pub struct StringLike(pub Vec<u8>);Expand description
A string-like type
Tuple Fields§
§0: Vec<u8>Trait Implementations§
Source§impl Clone for StringLike
impl Clone for StringLike
Source§fn clone(&self) -> StringLike
fn clone(&self) -> StringLike
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for StringLike
impl Debug for StringLike
Source§impl PartialEq for StringLike
impl PartialEq for StringLike
Source§impl PartialOrd for StringLike
impl PartialOrd for StringLike
impl StructuralPartialEq for StringLike
Auto Trait Implementations§
impl Freeze for StringLike
impl RefUnwindSafe for StringLike
impl Send for StringLike
impl Sync for StringLike
impl Unpin for StringLike
impl UnwindSafe for StringLike
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