[][src]Enum allsorts::unicode::VariationSelector

pub enum VariationSelector {
    VS01,
    VS02,
    VS03,
    VS15,
    VS16,
}

A Unicode variation selector.

VS04-VS14 are omitted as they aren't currently used.

Variants

VS01

VARIATION SELECTOR-1

VS02

VARIATION SELECTOR-2

VS03

VARIATION SELECTOR-3

VS15

Text presentation

VS16

Emoji presentation

Trait Implementations

impl Clone for VariationSelector[src]

impl Copy for VariationSelector[src]

impl Debug for VariationSelector[src]

impl Eq for VariationSelector[src]

impl PartialEq<VariationSelector> for VariationSelector[src]

impl StructuralEq for VariationSelector[src]

impl StructuralPartialEq for VariationSelector[src]

impl TryFrom<char> for VariationSelector[src]

type Error = ()

The type returned in the event of a conversion error.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.