pub enum VibratoWave {
Sine = 0,
RampDown = 1,
Square = 2,
Random = 3,
}Variants§
Trait Implementations§
Source§impl Clone for VibratoWave
impl Clone for VibratoWave
Source§fn clone(&self) -> VibratoWave
fn clone(&self) -> VibratoWave
Returns a duplicate of the value. Read more
1.0.0 · 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 VibratoWave
impl Debug for VibratoWave
Source§impl Default for VibratoWave
impl Default for VibratoWave
Source§fn default() -> VibratoWave
fn default() -> VibratoWave
Returns the “default value” for a type. Read more
Source§impl TryFrom<u8> for VibratoWave
impl TryFrom<u8> for VibratoWave
impl Copy for VibratoWave
Auto Trait Implementations§
impl Freeze for VibratoWave
impl RefUnwindSafe for VibratoWave
impl Send for VibratoWave
impl Sync for VibratoWave
impl Unpin for VibratoWave
impl UnwindSafe for VibratoWave
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