[][src]Enum weresocool_ast::ast::OscType

pub enum OscType {
    Sine,
    Noise,
    Square,
}

Variants

Sine
Noise
Square

Trait Implementations

impl Clone for OscType[src]

impl Copy for OscType[src]

impl Debug for OscType[src]

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

impl Eq for OscType[src]

impl Hash for OscType[src]

impl Ord for OscType[src]

impl PartialEq<OscType> for OscType[src]

impl PartialOrd<OscType> for OscType[src]

impl Serialize for OscType[src]

impl StructuralEq for OscType[src]

impl StructuralPartialEq for OscType[src]

Auto Trait Implementations

impl RefUnwindSafe for OscType

impl Send for OscType

impl Sync for OscType

impl Unpin for OscType

impl UnwindSafe for OscType

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

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,