Struct icu::datetime::provider::time_zones::MetazoneId
source ยท #[repr(transparent)]pub struct MetazoneId(pub TinyAsciiStr<4>);
Expand description
Metazone ID in a compact format
๐ง 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: TinyAsciiStr<4>
Trait Implementationsยง
sourceยงimpl AsULE for MetazoneId
impl AsULE for MetazoneId
sourceยงtype ULE = MetazoneId
type ULE = MetazoneId
The ULE type corresponding to
Self
. Read moresourceยงfn to_unaligned(self) -> <MetazoneId as AsULE>::ULE
fn to_unaligned(self) -> <MetazoneId as AsULE>::ULE
sourceยงfn from_unaligned(unaligned: <MetazoneId as AsULE>::ULE) -> MetazoneId
fn from_unaligned(unaligned: <MetazoneId as AsULE>::ULE) -> MetazoneId
sourceยงimpl Bake for MetazoneId
impl Bake for MetazoneId
sourceยงfn bake(&self, env: &CrateEnv) -> TokenStream
fn bake(&self, env: &CrateEnv) -> TokenStream
sourceยงimpl BakeSize for MetazoneId
impl BakeSize for MetazoneId
sourceยงfn borrows_size(&self) -> usize
fn borrows_size(&self) -> usize
Returns the size
sourceยงimpl Clone for MetazoneId
impl Clone for MetazoneId
sourceยงfn clone(&self) -> MetazoneId
fn clone(&self) -> MetazoneId
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 Debug for MetazoneId
impl Debug for MetazoneId
sourceยงimpl<'de> Deserialize<'de> for MetazoneId
impl<'de> Deserialize<'de> for MetazoneId
sourceยงfn deserialize<__D>(
__deserializer: __D,
) -> Result<MetazoneId, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<MetazoneId, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceยงimpl Hash for MetazoneId
impl Hash for MetazoneId
sourceยงimpl Ord for MetazoneId
impl Ord for MetazoneId
sourceยงfn cmp(&self, other: &MetazoneId) -> Ordering
fn cmp(&self, other: &MetazoneId) -> 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 PartialEq for MetazoneId
impl PartialEq for MetazoneId
sourceยงimpl PartialOrd for MetazoneId
impl PartialOrd for MetazoneId
sourceยงimpl Serialize for MetazoneId
impl Serialize for MetazoneId
sourceยงfn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
sourceยงimpl ULE for MetazoneId
impl ULE for MetazoneId
sourceยงfn validate_byte_slice(bytes: &[u8]) -> Result<(), UleError>
fn validate_byte_slice(bytes: &[u8]) -> Result<(), UleError>
Validates a byte slice,
&[u8]
. Read moresourceยงunsafe fn from_byte_slice_unchecked(bytes: &[u8]) -> &[Self]
unsafe fn from_byte_slice_unchecked(bytes: &[u8]) -> &[Self]
Takes a byte slice,
&[u8]
, and return it as &[Self]
with the same lifetime, assuming
that this byte slice has previously been run through Self::parse_byte_slice()
with
success. Read moresourceยงimpl<'a> Yokeable<'a> for MetazoneIdwhere
MetazoneId: Sized,
impl<'a> Yokeable<'a> for MetazoneIdwhere
MetazoneId: Sized,
sourceยงtype Output = MetazoneId
type Output = MetazoneId
This type MUST be
Self
with the 'static
replaced with 'a
, i.e. Self<'a>
sourceยงfn transform_owned(self) -> <MetazoneId as Yokeable<'a>>::Output
fn transform_owned(self) -> <MetazoneId as Yokeable<'a>>::Output
sourceยงunsafe fn make(this: <MetazoneId as Yokeable<'a>>::Output) -> MetazoneId
unsafe fn make(this: <MetazoneId as Yokeable<'a>>::Output) -> MetazoneId
This method can be used to cast away
Self<'a>
โs lifetime. Read moresourceยงfn transform_mut<F>(&'a mut self, f: F)
fn transform_mut<F>(&'a mut self, f: F)
This method must cast
self
between &'a mut Self<'static>
and &'a mut Self<'a>
,
and pass it to f
. Read moresourceยงimpl<'a> ZeroMapKV<'a> for MetazoneId
impl<'a> ZeroMapKV<'a> for MetazoneId
sourceยงtype Container = ZeroVec<'a, MetazoneId>
type Container = ZeroVec<'a, MetazoneId>
The container that can be used with this type:
ZeroVec
or VarZeroVec
.type Slice = ZeroSlice<MetazoneId>
sourceยงtype GetType = MetazoneId
type GetType = MetazoneId
The type produced by
Container::get()
Read moresourceยงtype OwnedType = MetazoneId
type OwnedType = MetazoneId
The type produced by
Container::replace()
and Container::remove()
,
also used during deserialization. If Self
is human readable serialized,
deserializing to Self::OwnedType
should produce the same value once
passed through Self::owned_as_self()
Read moreimpl Copy for MetazoneId
impl Eq for MetazoneId
impl StructuralPartialEq for MetazoneId
Auto Trait Implementationsยง
impl Freeze for MetazoneId
impl RefUnwindSafe for MetazoneId
impl Send for MetazoneId
impl Sync for MetazoneId
impl Unpin for MetazoneId
impl UnwindSafe for MetazoneId
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ยงunsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
๐ฌThis is a nightly-only experimental API. (
clone_to_uninit
)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