Struct Ideographic

struct Ideographic

Characters considered to be CJKV (Chinese, Japanese, Korean, and Vietnamese) ideographs, or related siniform ideographs

Example

use icu::properties::CodePointSetData;
use icu::properties::props::Ideographic;

let ideographic = CodePointSetData::new::<Ideographic>();

assert!(ideographic.contains(''));  // U+5DDD CJK UNIFIED IDEOGRAPH-5DDD
assert!(!ideographic.contains(''));  // U+BC25 HANGUL SYLLABLE BAB

Implementations

impl BinaryProperty for Ideographic

impl Debug for Ideographic

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

impl Freeze for Ideographic

impl RefUnwindSafe for Ideographic

impl Send for Ideographic

impl Sync for Ideographic

impl Unpin for Ideographic

impl UnsafeUnpin for Ideographic

impl UnwindSafe for Ideographic

impl<T> Any for Ideographic

fn type_id(self: &Self) -> TypeId

impl<T> Borrow for Ideographic

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

impl<T> BorrowMut for Ideographic

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

impl<T> ErasedDestructor for Ideographic

impl<T> From for Ideographic

fn from(t: T) -> T

Returns the argument unchanged.

impl<T, U> Into for Ideographic

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 Ideographic

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

impl<T, U> TryInto for Ideographic

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