pub enum TableShape {
Sine,
Tri,
Saw,
Square,
Pulse25,
Pulse12,
FormantA,
FormantO,
}Expand description
Wavetable shape. Index order matches the trace-site categorical and
quiver’s own WavetableType table, which the table CV selects into.
Variants§
Sine
Pure sine.
Tri
Triangle.
Saw
Sawtooth.
Square
Square.
Pulse25
25% pulse.
Pulse12
12.5% pulse.
FormantA
Vowel “ah” formant stack.
FormantO
Vowel “oh” formant stack.
Implementations§
Source§impl TableShape
impl TableShape
Trait Implementations§
Source§impl Clone for TableShape
impl Clone for TableShape
Source§fn clone(&self) -> TableShape
fn clone(&self) -> TableShape
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TableShape
impl Debug for TableShape
Source§impl<'de> Deserialize<'de> for TableShape
impl<'de> Deserialize<'de> for TableShape
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for TableShape
impl PartialEq for TableShape
Source§fn eq(&self, other: &TableShape) -> bool
fn eq(&self, other: &TableShape) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for TableShape
impl Serialize for TableShape
impl Copy for TableShape
impl Eq for TableShape
impl StructuralPartialEq for TableShape
Auto Trait Implementations§
impl Freeze for TableShape
impl RefUnwindSafe for TableShape
impl Send for TableShape
impl Sync for TableShape
impl Unpin for TableShape
impl UnsafeUnpin for TableShape
impl UnwindSafe for TableShape
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more