Struct GraphemeExtend

struct GraphemeExtend

Property used to define "Grapheme extender".

See D59 in Chapter 3, Conformance in the Unicode Standard.

Example

use icu::properties::CodePointSetData;
use icu::properties::props::GraphemeExtend;

let grapheme_extend = CodePointSetData::new::<GraphemeExtend>();

assert!(!grapheme_extend.contains(''));  // U+0D15 MALAYALAM LETTER KA
assert!(!grapheme_extend.contains('\u{0D3F}'));  // U+0D3F MALAYALAM VOWEL SIGN I
assert!(grapheme_extend.contains('\u{0D3E}'));  // U+0D3E MALAYALAM VOWEL SIGN AA

Implementations

impl BinaryProperty for GraphemeExtend

impl Debug for GraphemeExtend

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

impl Freeze for GraphemeExtend

impl RefUnwindSafe for GraphemeExtend

impl Send for GraphemeExtend

impl Sync for GraphemeExtend

impl Unpin for GraphemeExtend

impl UnsafeUnpin for GraphemeExtend

impl UnwindSafe for GraphemeExtend

impl<T> Any for GraphemeExtend

fn type_id(self: &Self) -> TypeId

impl<T> Borrow for GraphemeExtend

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

impl<T> BorrowMut for GraphemeExtend

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

impl<T> ErasedDestructor for GraphemeExtend

impl<T> From for GraphemeExtend

fn from(t: T) -> T

Returns the argument unchanged.

impl<T, U> Into for GraphemeExtend

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 GraphemeExtend

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

impl<T, U> TryInto for GraphemeExtend

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