Struct icu_locid_transform::provider::StrStrPair
source ยท 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ยงfn eq(&self, other: &StrStrPair<'a>) -> bool
fn eq(&self, other: &StrStrPair<'a>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.sourceยงimpl<'a> PartialOrd for StrStrPair<'a>
impl<'a> PartialOrd for StrStrPair<'a>
sourceยงfn partial_cmp(&self, other: &StrStrPair<'a>) -> Option<Ordering>
fn partial_cmp(&self, other: &StrStrPair<'a>) -> Option<Ordering>
1.0.0 ยท sourceยงfn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresourceยง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