pub enum ExactCompare {}
Expand description
Marker type used to do exact, byte-for-byte string comparisons.
This is likely the fastest kind of string comparison, and matches the default behaviour of the ==
operator on strings.
Trait Implementations§
Source§impl Debug for ExactCompare
impl Debug for ExactCompare
Source§impl StrCompare for ExactCompare
impl StrCompare for ExactCompare
Auto Trait Implementations§
impl Freeze for ExactCompare
impl RefUnwindSafe for ExactCompare
impl Send for ExactCompare
impl Sync for ExactCompare
impl Unpin for ExactCompare
impl UnwindSafe for ExactCompare
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