[][src]Enum nanowrimo::Feeling

pub enum Feeling {
    Upset,
    Stressed,
    Okay,
    PrettyGood,
    Great,
}

Variants

Upset
Stressed
Okay
PrettyGood
Great

Trait Implementations

impl Clone for Feeling[src]

impl Copy for Feeling[src]

impl Debug for Feeling[src]

impl<'de> Deserialize<'de> for Feeling[src]

impl Eq for Feeling[src]

impl Into<u8> for Feeling[src]

impl PartialEq<Feeling> for Feeling[src]

impl Serialize for Feeling[src]

impl StructuralEq for Feeling[src]

impl StructuralPartialEq for Feeling[src]

impl TryFrom<u8> for Feeling[src]

type Error = &'static str

The type returned in the event of a conversion error.

Auto Trait Implementations

impl RefUnwindSafe for Feeling

impl Send for Feeling

impl Sync for Feeling

impl Unpin for Feeling

impl UnwindSafe for Feeling

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

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

impl<T> Instrument for T[src]

impl<T> Instrument 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.