Struct CaseIgnorable

struct CaseIgnorable

Characters which are ignored for casing purposes.

Example

use icu::properties::CodePointSetData;
use icu::properties::props::CaseIgnorable;

let case_ignorable = CodePointSetData::new::<CaseIgnorable>();

assert!(case_ignorable.contains(':'));
assert!(!case_ignorable.contains('λ'));  // U+03BB GREEK SMALL LETTER LAMBDA

Implementations

impl BinaryProperty for CaseIgnorable

impl Debug for CaseIgnorable

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

impl Freeze for CaseIgnorable

impl RefUnwindSafe for CaseIgnorable

impl Send for CaseIgnorable

impl Sync for CaseIgnorable

impl Unpin for CaseIgnorable

impl UnsafeUnpin for CaseIgnorable

impl UnwindSafe for CaseIgnorable

impl<T> Any for CaseIgnorable

fn type_id(self: &Self) -> TypeId

impl<T> Borrow for CaseIgnorable

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

impl<T> BorrowMut for CaseIgnorable

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

impl<T> ErasedDestructor for CaseIgnorable

impl<T> From for CaseIgnorable

fn from(t: T) -> T

Returns the argument unchanged.

impl<T, U> Into for CaseIgnorable

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 CaseIgnorable

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

impl<T, U> TryInto for CaseIgnorable

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