title_case
Capitalizes the first letter of every whitespace-separated word and lowercases the rest.
Whitespace is kept as it is. Only whitespace starts a new word, so it's becomes It's and
well-known becomes Well-known. Use pascal_case to also drop the
separators.
Import
Section titled “Import”Cargo feature string (enabled by default). To compile only this module:
or in Cargo.toml:
Signature
Section titled “Signature”Parameters
Section titled “Parameters”| Parameter | Type | Description |
|---|---|---|
s | &str | The text to convert. |
Returns
Section titled “Returns”String
