[][src]Enum pinyin_order::PinYin

pub enum PinYin {
    Other(char),
    Chinese(char, &'static str),
}

Variants

Other(char)
Chinese(char, &'static str)

Trait Implementations

impl Debug for PinYin[src]

impl Eq for PinYin[src]

impl Ord for PinYin[src]

impl PartialEq<PinYin> for PinYin[src]

impl PartialOrd<PinYin> for PinYin[src]

impl StructuralEq for PinYin[src]

impl StructuralPartialEq for PinYin[src]

Auto Trait Implementations

impl RefUnwindSafe for PinYin

impl Send for PinYin

impl Sync for PinYin

impl Unpin for PinYin

impl UnwindSafe for PinYin

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, 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.