#[repr(u8)]pub enum LfoShape {
Show 20 variants
TRI = 0,
SIN = 1,
RAMP_DOWN = 2,
RAMP_UP = 3,
EXP_DN = 4,
EXP_UP = 5,
SQR_DN = 6,
SQR_UP = 7,
RANDOM = 8,
DRUNK = 9,
TRI_T = 10,
SIN_T = 11,
RAMPD_T = 12,
RAMPU_T = 13,
EXPD_T = 14,
EXPU_T = 15,
SQ_D_T = 16,
SQ_U_T = 17,
RAND_T = 18,
DRNK_T = 19,
}
Variants§
TRI = 0
SIN = 1
RAMP_DOWN = 2
RAMP_UP = 3
EXP_DN = 4
EXP_UP = 5
SQR_DN = 6
SQR_UP = 7
RANDOM = 8
DRUNK = 9
TRI_T = 10
SIN_T = 11
RAMPD_T = 12
RAMPU_T = 13
EXPD_T = 14
EXPU_T = 15
SQ_D_T = 16
SQ_U_T = 17
RAND_T = 18
DRNK_T = 19
Trait Implementations§
Source§impl TryFromPrimitive for LfoShape
impl TryFromPrimitive for LfoShape
impl Copy for LfoShape
impl StructuralPartialEq for LfoShape
Auto Trait Implementations§
impl Freeze for LfoShape
impl RefUnwindSafe for LfoShape
impl Send for LfoShape
impl Sync for LfoShape
impl Unpin for LfoShape
impl UnwindSafe for LfoShape
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