Struct runestr::RuneString [−][src]
pub struct RuneString(_, _);
Expand description
A growable rune-based string type.
Implementations
Perform a conversion from str to create a RuneString,
returning None if data needs to be changed.
You can use from_str_lossy instead if you allow the text
be slightly modified to form complete runes.
Perform a conversion from str to create a RuneString,
slightly modifying the text to form complete runes if necessary.
Append the given RuneStr to the end of the RuneString.
Methods from Deref<Target = RuneStr>
Returns an iterator over the bytes of a rune string slice.
Returns an iterator over the runes of a rune string slice.
Trait Implementations
Returns the “default value” for a type. Read more
Extends a collection with the contents of an iterator. Read more
extend_one)Extends a collection with exactly one element.
extend_one)Reserves capacity in a collection for the given number of additional elements. Read more
Creates a value from an iterator. Read more
Auto Trait Implementations
impl !RefUnwindSafe for RuneString
impl !Send for RuneString
impl !Sync for RuneString
impl Unpin for RuneString
impl UnwindSafe for RuneString
Blanket Implementations
Mutably borrows from an owned value. Read more