Struct NoncharacterCodePoint

struct NoncharacterCodePoint

Code points permanently reserved for internal use.

Example

use icu::properties::CodePointSetData;
use icu::properties::props::NoncharacterCodePoint;

let noncharacter_code_point = CodePointSetData::new::<NoncharacterCodePoint>();

assert!(noncharacter_code_point.contains('\u{FDD0}'));
assert!(noncharacter_code_point.contains('\u{FFFF}'));
assert!(!noncharacter_code_point.contains('\u{10000}'));

Implementations

impl BinaryProperty for NoncharacterCodePoint

impl Debug for NoncharacterCodePoint

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

impl Freeze for NoncharacterCodePoint

impl RefUnwindSafe for NoncharacterCodePoint

impl Send for NoncharacterCodePoint

impl Sync for NoncharacterCodePoint

impl Unpin for NoncharacterCodePoint

impl UnsafeUnpin for NoncharacterCodePoint

impl UnwindSafe for NoncharacterCodePoint

impl<T> Any for NoncharacterCodePoint

fn type_id(self: &Self) -> TypeId

impl<T> Borrow for NoncharacterCodePoint

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

impl<T> BorrowMut for NoncharacterCodePoint

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

impl<T> ErasedDestructor for NoncharacterCodePoint

impl<T> From for NoncharacterCodePoint

fn from(t: T) -> T

Returns the argument unchanged.

impl<T, U> Into for NoncharacterCodePoint

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 NoncharacterCodePoint

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

impl<T, U> TryInto for NoncharacterCodePoint

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