pub struct StrStrPair<'a>(pub Cow<'a, str>, pub Cow<'a, str>);
Expand description
A pair of strings with a EncodeAsVarULE implementation.
🚧 This code is considered unstable; it may change at any time, in breaking or non-breaking ways,
including in SemVer minor releases. While the serde representation of data structs is guaranteed
to be stable, their Rust representation might not be. Use with caution.
Tuple Fields§
§0: Cow<'a, str>
§1: Cow<'a, str>
Trait Implementations§
Source§impl<'a> Clone for StrStrPair<'a>
impl<'a> Clone for StrStrPair<'a>
Source§fn clone(&self) -> StrStrPair<'a>
fn clone(&self) -> StrStrPair<'a>
Returns a copy 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<'a> Debug for StrStrPair<'a>
impl<'a> Debug for StrStrPair<'a>
Source§impl<'a> EncodeAsVarULE<StrStrPairVarULE> for &StrStrPair<'a>
impl<'a> EncodeAsVarULE<StrStrPairVarULE> for &StrStrPair<'a>
Source§fn encode_var_ule_as_slices<R>(&self, cb: impl FnOnce(&[&[u8]]) -> R) -> R
fn encode_var_ule_as_slices<R>(&self, cb: impl FnOnce(&[&[u8]]) -> R) -> R
Calls
cb
with a piecewise list of byte slices that when concatenated
produce the memory pattern of the corresponding instance of T
. Read moreSource§fn encode_var_ule_len(&self) -> usize
fn encode_var_ule_len(&self) -> usize
Return the length, in bytes, of the corresponding
VarULE
typeSource§fn encode_var_ule_write(&self, dst: &mut [u8])
fn encode_var_ule_write(&self, dst: &mut [u8])
Write the corresponding
VarULE
type to the dst
buffer. dst
should
be the size of Self::encode_var_ule_len()
Source§impl<'a> EncodeAsVarULE<StrStrPairVarULE> for StrStrPair<'a>
impl<'a> EncodeAsVarULE<StrStrPairVarULE> for StrStrPair<'a>
Source§fn encode_var_ule_as_slices<R>(&self, cb: impl FnOnce(&[&[u8]]) -> R) -> R
fn encode_var_ule_as_slices<R>(&self, cb: impl FnOnce(&[&[u8]]) -> R) -> R
Calls
cb
with a piecewise list of byte slices that when concatenated
produce the memory pattern of the corresponding instance of T
. Read moreSource§fn encode_var_ule_len(&self) -> usize
fn encode_var_ule_len(&self) -> usize
Return the length, in bytes, of the corresponding
VarULE
typeSource§fn encode_var_ule_write(&self, dst: &mut [u8])
fn encode_var_ule_write(&self, dst: &mut [u8])
Write the corresponding
VarULE
type to the dst
buffer. dst
should
be the size of Self::encode_var_ule_len()
Source§impl<'a> Ord for StrStrPair<'a>
impl<'a> Ord for StrStrPair<'a>
Source§fn cmp(&self, other: &StrStrPair<'a>) -> Ordering
fn cmp(&self, other: &StrStrPair<'a>) -> Ordering
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> PartialEq for StrStrPair<'a>
impl<'a> PartialEq for StrStrPair<'a>
Source§impl<'a> PartialOrd for StrStrPair<'a>
impl<'a> PartialOrd for StrStrPair<'a>
Source§impl<'a> ZeroFrom<'a, StrStrPairVarULE> for StrStrPair<'a>
impl<'a> ZeroFrom<'a, StrStrPairVarULE> for StrStrPair<'a>
Source§fn zero_from(other: &'a StrStrPairVarULE) -> Self
fn zero_from(other: &'a StrStrPairVarULE) -> Self
Clone the other
C
into a struct that may retain references into C
.impl<'a> Eq for StrStrPair<'a>
impl<'a> StructuralPartialEq for StrStrPair<'a>
Auto Trait Implementations§
impl<'a> Freeze for StrStrPair<'a>
impl<'a> RefUnwindSafe for StrStrPair<'a>
impl<'a> Send for StrStrPair<'a>
impl<'a> Sync for StrStrPair<'a>
impl<'a> Unpin for StrStrPair<'a>
impl<'a> UnwindSafe for StrStrPair<'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