pub(crate) struct CanonicalCombiningClass(pub(crate) u8);Expand description
This type exists as a shim for icu_properties CanonicalCombiningClass when the crate is disabled It should not be exposed to users.
Tuple Fields§
§0: u8Implementations§
Source§impl CanonicalCombiningClass
impl CanonicalCombiningClass
pub(crate) const fn from_icu4c_value(v: u8) -> Self
pub(crate) const fn to_icu4c_value(self) -> u8
Trait Implementations§
Source§impl Clone for CanonicalCombiningClass
impl Clone for CanonicalCombiningClass
Source§fn clone(&self) -> CanonicalCombiningClass
fn clone(&self) -> CanonicalCombiningClass
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Ord for CanonicalCombiningClass
impl Ord for CanonicalCombiningClass
Source§fn cmp(&self, other: &CanonicalCombiningClass) -> Ordering
fn cmp(&self, other: &CanonicalCombiningClass) -> Ordering
1.21.0 (const: unstable) · 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 CanonicalCombiningClass
impl PartialEq for CanonicalCombiningClass
Source§fn eq(&self, other: &CanonicalCombiningClass) -> bool
fn eq(&self, other: &CanonicalCombiningClass) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for CanonicalCombiningClass
impl PartialOrd for CanonicalCombiningClass
impl Copy for CanonicalCombiningClass
impl Eq for CanonicalCombiningClass
impl StructuralPartialEq for CanonicalCombiningClass
Auto Trait Implementations§
impl Freeze for CanonicalCombiningClass
impl RefUnwindSafe for CanonicalCombiningClass
impl Send for CanonicalCombiningClass
impl Sync for CanonicalCombiningClass
impl Unpin for CanonicalCombiningClass
impl UnsafeUnpin for CanonicalCombiningClass
impl UnwindSafe for CanonicalCombiningClass
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