Module core::strUnstable
[-] [+]
[src]
String manipulation
For more details, see std::str
Modules
pattern | The string Pattern API. |
Structs
Bytes | External iterator for a string's bytes.
Use with the |
CharIndices | Iterator for a string's characters and their byte offsets. |
CharRange | Struct that contains a |
Chars | Iterator for the char (representing Unicode Scalar Values) of a string |
Lines | Created with the method |
LinesAny | Created with the method |
MatchIndices | /// Created with the method |
Matches | /// Created with the method |
ParseBoolError | An error returned when parsing a |
RMatchIndices | /// Created with the method |
RMatches | /// Created with the method |
RSplit | /// Created with the method |
RSplitN | /// Created with the method |
RSplitTerminator | /// Created with the method |
Split | /// Created with the method |
SplitN | /// Created with the method |
SplitTerminator | /// Created with the method |
Utf8Error | Errors which can occur when attempting to interpret a byte slice as a |
Traits
FromStr | A trait to abstract the idea of creating a new instance of a type from a string. |
Functions
char_range_at_raw | Pluck a code point out of a UTF-8-like byte slice and return the index of the next code point. |
from_utf8 | Converts a slice of bytes to a string slice without performing any allocations. |
from_utf8_unchecked | Converts a slice of bytes to a string slice without checking that the string contains valid UTF-8. |
next_code_point | Reads the next code point out of a byte iterator (assuming a UTF-8-like encoding). |
next_code_point_reverse | Reads the last code point out of a byte iterator (assuming a UTF-8-like encoding). |