[][src]Enum esl::SoundGen

pub enum SoundGen {
    Left,
    Right,
    SwimLeft,
    SwimRight,
    Moan,
    Roar,
    Scream,
    Land,
}

Variants

Left
Right
SwimLeft
SwimRight
Moan
Roar
Scream
Land

Trait Implementations

impl Clone for SoundGen[src]

impl Copy for SoundGen[src]

impl Debug for SoundGen[src]

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

impl Display for SoundGen[src]

impl Eq for SoundGen[src]

impl From<SoundGen> for Field[src]

impl FromPrimitive for SoundGen[src]

impl FromStr for SoundGen[src]

type Err = ParseEnumError

The associated error which can be returned from parsing.

impl Hash for SoundGen[src]

impl Ord for SoundGen[src]

impl PartialEq<SoundGen> for SoundGen[src]

impl PartialOrd<SoundGen> for SoundGen[src]

impl Serialize for SoundGen[src]

impl StructuralEq for SoundGen[src]

impl StructuralPartialEq for SoundGen[src]

impl ToPrimitive for SoundGen[src]

impl TryFrom<i16> for SoundGen[src]

type Error = &'static str

The type returned in the event of a conversion error.

impl TryFrom<i32> for SoundGen[src]

type Error = &'static str

The type returned in the event of a conversion error.

impl TryFrom<i64> for SoundGen[src]

type Error = &'static str

The type returned in the event of a conversion error.

impl TryFrom<i8> for SoundGen[src]

type Error = &'static str

The type returned in the event of a conversion error.

impl TryFrom<u16> for SoundGen[src]

type Error = &'static str

The type returned in the event of a conversion error.

impl TryFrom<u32> for SoundGen[src]

type Error = &'static str

The type returned in the event of a conversion error.

impl TryFrom<u64> for SoundGen[src]

type Error = &'static str

The type returned in the event of a conversion error.

impl TryFrom<u8> for SoundGen[src]

type Error = &'static str

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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> ToString for T where
    T: Display + ?Sized
[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.