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> Bake for StrStrPair<'a>
impl<'a> Bake for StrStrPair<'a>
Source§fn bake(&self, env: &CrateEnv) -> TokenStream
fn bake(&self, env: &CrateEnv) -> TokenStream
Source§impl<'a> BakeSize for StrStrPair<'a>
impl<'a> BakeSize for StrStrPair<'a>
Source§fn borrows_size(&self) -> usize
fn borrows_size(&self) -> usize
Returns the size
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<'de: 'a, 'a> Deserialize<'de> for StrStrPair<'a>
impl<'de: 'a, 'a> Deserialize<'de> for StrStrPair<'a>
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
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> From<&'a StrStrPairVarULE> for StrStrPair<'a>
impl<'a> From<&'a StrStrPairVarULE> for StrStrPair<'a>
Source§fn from(other: &'a StrStrPairVarULE) -> Self
fn from(other: &'a StrStrPairVarULE) -> Self
Converts to this type from the input type.
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> Serialize for StrStrPair<'a>
impl<'a> Serialize 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more