Struct UnifiedIdeograph

struct UnifiedIdeograph

A property which specifies the exact set of Unified CJK Ideographs in the standard.

Example

use icu::properties::CodePointSetData;
use icu::properties::props::UnifiedIdeograph;

let unified_ideograph = CodePointSetData::new::<UnifiedIdeograph>();

assert!(unified_ideograph.contains(''));  // U+5DDD CJK UNIFIED IDEOGRAPH-5DDD
assert!(unified_ideograph.contains(''));  // U+6728 CJK UNIFIED IDEOGRAPH-6728
assert!(!unified_ideograph.contains('𛅸'));  // U+1B178 NUSHU CHARACTER-1B178

Implementations

impl BinaryProperty for UnifiedIdeograph

impl Debug for UnifiedIdeograph

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

impl Freeze for UnifiedIdeograph

impl RefUnwindSafe for UnifiedIdeograph

impl Send for UnifiedIdeograph

impl Sync for UnifiedIdeograph

impl Unpin for UnifiedIdeograph

impl UnsafeUnpin for UnifiedIdeograph

impl UnwindSafe for UnifiedIdeograph

impl<T> Any for UnifiedIdeograph

fn type_id(self: &Self) -> TypeId

impl<T> Borrow for UnifiedIdeograph

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

impl<T> BorrowMut for UnifiedIdeograph

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

impl<T> ErasedDestructor for UnifiedIdeograph

impl<T> From for UnifiedIdeograph

fn from(t: T) -> T

Returns the argument unchanged.

impl<T, U> Into for UnifiedIdeograph

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 UnifiedIdeograph

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

impl<T, U> TryInto for UnifiedIdeograph

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