#[non_exhaustive]pub struct EmojiModifier;Expand description
Characters that are emoji modifiers.
§Example
use icu::properties::CodePointSetData;
use icu::properties::props::EmojiModifier;
let emoji_modifier = CodePointSetData::new::<EmojiModifier>();
assert!(emoji_modifier.contains('\u{1F3FD}'));  // EMOJI MODIFIER FITZPATRICK TYPE-4
assert!(!emoji_modifier.contains('\u{200C}'));  // ZERO WIDTH NON-JOINERTrait Implementations§
Source§impl BinaryProperty for EmojiModifier
 
impl BinaryProperty for EmojiModifier
Auto Trait Implementations§
impl Freeze for EmojiModifier
impl RefUnwindSafe for EmojiModifier
impl Send for EmojiModifier
impl Sync for EmojiModifier
impl Unpin for EmojiModifier
impl UnwindSafe for EmojiModifier
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> 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