Struct IdsTrinaryOperator

struct IdsTrinaryOperator

Characters used in Ideographic Description Sequences.

Example

use icu::properties::CodePointSetData;
use icu::properties::props::IdsTrinaryOperator;

let ids_trinary_operator = CodePointSetData::new::<IdsTrinaryOperator>();

assert!(ids_trinary_operator.contains('\u{2FF2}'));  // IDEOGRAPHIC DESCRIPTION CHARACTER LEFT TO MIDDLE AND RIGHT
assert!(ids_trinary_operator.contains('\u{2FF3}'));  // IDEOGRAPHIC DESCRIPTION CHARACTER ABOVE TO MIDDLE AND BELOW
assert!(!ids_trinary_operator.contains('\u{2FF4}'));
assert!(!ids_trinary_operator.contains('\u{2FF5}'));  // IDEOGRAPHIC DESCRIPTION CHARACTER SURROUND FROM ABOVE
assert!(!ids_trinary_operator.contains('\u{3006}'));  // IDEOGRAPHIC CLOSING MARK

Implementations

impl BinaryProperty for IdsTrinaryOperator

impl Debug for IdsTrinaryOperator

fn fmt(self: &Self, f: &mut Formatter<'_>) -> Result

impl Freeze for IdsTrinaryOperator

impl RefUnwindSafe for IdsTrinaryOperator

impl Send for IdsTrinaryOperator

impl Sync for IdsTrinaryOperator

impl Unpin for IdsTrinaryOperator

impl UnsafeUnpin for IdsTrinaryOperator

impl UnwindSafe for IdsTrinaryOperator

impl<T> Any for IdsTrinaryOperator

fn type_id(self: &Self) -> TypeId

impl<T> Borrow for IdsTrinaryOperator

fn borrow(self: &Self) -> &T

impl<T> BorrowMut for IdsTrinaryOperator

fn borrow_mut(self: &mut Self) -> &mut T

impl<T> ErasedDestructor for IdsTrinaryOperator

impl<T> From for IdsTrinaryOperator

fn from(t: T) -> T

Returns the argument unchanged.

impl<T, U> Into for IdsTrinaryOperator

fn into(self: Self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

impl<T, U> TryFrom for IdsTrinaryOperator

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

impl<T, U> TryInto for IdsTrinaryOperator

fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>