Struct QuotationMark

struct QuotationMark

Punctuation characters that function as quotation marks.

Example

use icu::properties::CodePointSetData;
use icu::properties::props::QuotationMark;

let quotation_mark = CodePointSetData::new::<QuotationMark>();

assert!(quotation_mark.contains('\''));
assert!(quotation_mark.contains(''));  // U+201E DOUBLE LOW-9 QUOTATION MARK
assert!(!quotation_mark.contains('<'));

Implementations

impl BinaryProperty for QuotationMark

impl Debug for QuotationMark

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

impl Freeze for QuotationMark

impl RefUnwindSafe for QuotationMark

impl Send for QuotationMark

impl Sync for QuotationMark

impl Unpin for QuotationMark

impl UnsafeUnpin for QuotationMark

impl UnwindSafe for QuotationMark

impl<T> Any for QuotationMark

fn type_id(self: &Self) -> TypeId

impl<T> Borrow for QuotationMark

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

impl<T> BorrowMut for QuotationMark

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

impl<T> ErasedDestructor for QuotationMark

impl<T> From for QuotationMark

fn from(t: T) -> T

Returns the argument unchanged.

impl<T, U> Into for QuotationMark

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 QuotationMark

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

impl<T, U> TryInto for QuotationMark

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