Struct Alphabetic

struct Alphabetic

Alphabetic characters.

Example

use icu::properties::CodePointSetData;
use icu::properties::props::Alphabetic;

let alphabetic = CodePointSetData::new::<Alphabetic>();

assert!(!alphabetic.contains('3'));
assert!(!alphabetic.contains(''));  // U+0A69 GURMUKHI DIGIT THREE
assert!(alphabetic.contains('A'));
assert!(alphabetic.contains('Ä'));  // U+00C4 LATIN CAPITAL LETTER A WITH DIAERESIS

Implementations

impl BinaryProperty for Alphabetic

impl Debug for Alphabetic

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

impl Freeze for Alphabetic

impl RefUnwindSafe for Alphabetic

impl Send for Alphabetic

impl Sync for Alphabetic

impl Unpin for Alphabetic

impl UnsafeUnpin for Alphabetic

impl UnwindSafe for Alphabetic

impl<T> Any for Alphabetic

fn type_id(self: &Self) -> TypeId

impl<T> Borrow for Alphabetic

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

impl<T> BorrowMut for Alphabetic

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

impl<T> ErasedDestructor for Alphabetic

impl<T> From for Alphabetic

fn from(t: T) -> T

Returns the argument unchanged.

impl<T, U> Into for Alphabetic

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 Alphabetic

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

impl<T, U> TryInto for Alphabetic

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