pub struct String_(pub String);Expand description
Represents a sequence of characters.
First the length N is given as an INT16. Then N bytes follow which are the UTF-8 encoding of the character sequence. Length must not be negative.
Tuple Fields§
§0: StringTrait Implementations§
Source§impl Ord for String_
impl Ord for String_
Source§impl PartialOrd for String_
impl PartialOrd for String_
impl Eq for String_
impl StructuralPartialEq for String_
Auto Trait Implementations§
impl Freeze for String_
impl RefUnwindSafe for String_
impl Send for String_
impl Sync for String_
impl Unpin for String_
impl UnwindSafe for String_
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more