Struct LogicalOrderException

struct LogicalOrderException

A small number of spacing vowel letters occurring in certain Southeast Asian scripts such as Thai and Lao.

Example

use icu::properties::CodePointSetData;
use icu::properties::props::LogicalOrderException;

let logical_order_exception = CodePointSetData::new::<LogicalOrderException>();

assert!(logical_order_exception.contains(''));  // U+0EC1 LAO VOWEL SIGN EI
assert!(!logical_order_exception.contains(''));  // U+0EB0 LAO VOWEL SIGN A

Implementations

impl BinaryProperty for LogicalOrderException

impl Debug for LogicalOrderException

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

impl Freeze for LogicalOrderException

impl RefUnwindSafe for LogicalOrderException

impl Send for LogicalOrderException

impl Sync for LogicalOrderException

impl Unpin for LogicalOrderException

impl UnsafeUnpin for LogicalOrderException

impl UnwindSafe for LogicalOrderException

impl<T> Any for LogicalOrderException

fn type_id(self: &Self) -> TypeId

impl<T> Borrow for LogicalOrderException

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

impl<T> BorrowMut for LogicalOrderException

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

impl<T> ErasedDestructor for LogicalOrderException

impl<T> From for LogicalOrderException

fn from(t: T) -> T

Returns the argument unchanged.

impl<T, U> Into for LogicalOrderException

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 LogicalOrderException

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

impl<T, U> TryInto for LogicalOrderException

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