Struct IdsBinaryOperator

struct IdsBinaryOperator

Characters used in Ideographic Description Sequences.

Example

use icu::properties::CodePointSetData;
use icu::properties::props::IdsBinaryOperator;

let ids_binary_operator = CodePointSetData::new::<IdsBinaryOperator>();

assert!(ids_binary_operator.contains('\u{2FF5}'));  // IDEOGRAPHIC DESCRIPTION CHARACTER SURROUND FROM ABOVE
assert!(!ids_binary_operator.contains('\u{3006}'));  // IDEOGRAPHIC CLOSING MARK

Implementations

impl BinaryProperty for IdsBinaryOperator

impl Debug for IdsBinaryOperator

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

impl Freeze for IdsBinaryOperator

impl RefUnwindSafe for IdsBinaryOperator

impl Send for IdsBinaryOperator

impl Sync for IdsBinaryOperator

impl Unpin for IdsBinaryOperator

impl UnsafeUnpin for IdsBinaryOperator

impl UnwindSafe for IdsBinaryOperator

impl<T> Any for IdsBinaryOperator

fn type_id(self: &Self) -> TypeId

impl<T> Borrow for IdsBinaryOperator

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

impl<T> BorrowMut for IdsBinaryOperator

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

impl<T> ErasedDestructor for IdsBinaryOperator

impl<T> From for IdsBinaryOperator

fn from(t: T) -> T

Returns the argument unchanged.

impl<T, U> Into for IdsBinaryOperator

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 IdsBinaryOperator

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

impl<T, U> TryInto for IdsBinaryOperator

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