pub struct TextStr<'a>(pub &'a str);
Expand description
A unicode text string object.
This is written as a Str
containing either bare ASCII (if possible) or a
byte order mark followed by UTF-16-BE bytes.
Tuple Fields§
§0: &'a str
Trait Implementations§
Source§impl<'a> Ord for TextStr<'a>
impl<'a> Ord for TextStr<'a>
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl<'a> PartialOrd for TextStr<'a>
impl<'a> PartialOrd for TextStr<'a>
impl<'a> Copy for TextStr<'a>
impl<'a> Eq for TextStr<'a>
impl<'a> StructuralPartialEq for TextStr<'a>
Auto Trait Implementations§
impl<'a> Freeze for TextStr<'a>
impl<'a> RefUnwindSafe for TextStr<'a>
impl<'a> Send for TextStr<'a>
impl<'a> Sync for TextStr<'a>
impl<'a> Unpin for TextStr<'a>
impl<'a> UnwindSafe for TextStr<'a>
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