#[non_exhaustive]pub struct PreeditStyle(pub u32);Tuple Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.0: u32Implementations§
Trait Implementations§
Source§impl Clone for PreeditStyle
impl Clone for PreeditStyle
Source§fn clone(&self) -> PreeditStyle
fn clone(&self) -> PreeditStyle
Returns a duplicate 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 PreeditStyle
impl Debug for PreeditStyle
Source§impl From<PreeditStyle> for u32
impl From<PreeditStyle> for u32
Source§fn from(val: PreeditStyle) -> u32
fn from(val: PreeditStyle) -> u32
Converts to this type from the input type.
Source§impl Hash for PreeditStyle
impl Hash for PreeditStyle
Source§impl Ord for PreeditStyle
impl Ord for PreeditStyle
Source§fn cmp(&self, other: &PreeditStyle) -> Ordering
fn cmp(&self, other: &PreeditStyle) -> 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 PreeditStyle
impl PartialEq for PreeditStyle
Source§impl PartialOrd for PreeditStyle
impl PartialOrd for PreeditStyle
Source§impl TryFrom<u32> for PreeditStyle
impl TryFrom<u32> for PreeditStyle
impl Copy for PreeditStyle
impl Eq for PreeditStyle
impl StructuralPartialEq for PreeditStyle
Auto Trait Implementations§
impl Freeze for PreeditStyle
impl RefUnwindSafe for PreeditStyle
impl Send for PreeditStyle
impl Sync for PreeditStyle
impl Unpin for PreeditStyle
impl UnsafeUnpin for PreeditStyle
impl UnwindSafe for PreeditStyle
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