Struct icu_collator::provider::CollationJamoV1
source ยท pub struct CollationJamoV1<'data> {
pub ce32s: ZeroVec<'data, u32>,
}
Expand description
CollationElement32
s for the Hangul Jamo Unicode Block
๐ง 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.
Fieldsยง
ยงce32s: ZeroVec<'data, u32>
CollationElement32
s (as u32
s) for the Hangul Jamo Unicode Block.
The length must be equal to the size of the block (256).
Trait Implementationsยง
sourceยงimpl<'data> Clone for CollationJamoV1<'data>
impl<'data> Clone for CollationJamoV1<'data>
sourceยงfn clone(&self) -> CollationJamoV1<'data>
fn clone(&self) -> CollationJamoV1<'data>
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<'data> Debug for CollationJamoV1<'data>
impl<'data> Debug for CollationJamoV1<'data>
sourceยงimpl<'data> PartialEq for CollationJamoV1<'data>
impl<'data> PartialEq for CollationJamoV1<'data>
sourceยงfn eq(&self, other: &CollationJamoV1<'data>) -> bool
fn eq(&self, other: &CollationJamoV1<'data>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.sourceยงimpl<'a> Yokeable<'a> for CollationJamoV1<'static>
impl<'a> Yokeable<'a> for CollationJamoV1<'static>
ยงtype Output = CollationJamoV1<'a>
type Output = CollationJamoV1<'a>
This type MUST be
Self
with the 'static
replaced with 'a
, i.e. Self<'a>
sourceยงfn transform_owned(self) -> Self::Output
fn transform_owned(self) -> Self::Output
sourceยงimpl<'zf, 'zf_inner> ZeroFrom<'zf, CollationJamoV1<'zf_inner>> for CollationJamoV1<'zf>
impl<'zf, 'zf_inner> ZeroFrom<'zf, CollationJamoV1<'zf_inner>> for CollationJamoV1<'zf>
sourceยงfn zero_from(this: &'zf CollationJamoV1<'zf_inner>) -> Self
fn zero_from(this: &'zf CollationJamoV1<'zf_inner>) -> Self
Clone the other
C
into a struct that may retain references into C
.impl<'data> StructuralPartialEq for CollationJamoV1<'data>
Auto Trait Implementationsยง
impl<'data> Freeze for CollationJamoV1<'data>
impl<'data> RefUnwindSafe for CollationJamoV1<'data>
impl<'data> Send for CollationJamoV1<'data>
impl<'data> Sync for CollationJamoV1<'data>
impl<'data> Unpin for CollationJamoV1<'data>
impl<'data> UnwindSafe for CollationJamoV1<'data>
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