pub enum TestSignalType {
Sine,
Square,
Saw,
Noise,
Envelope,
}Expand description
Type of test signal.
Variants§
Sine
Sine wave.
Square
Square wave.
Saw
Sawtooth wave.
Noise
White noise.
Envelope
ADSR-like envelope.
Trait Implementations§
Source§impl Clone for TestSignalType
impl Clone for TestSignalType
Source§fn clone(&self) -> TestSignalType
fn clone(&self) -> TestSignalType
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 moreAuto Trait Implementations§
impl Freeze for TestSignalType
impl RefUnwindSafe for TestSignalType
impl Send for TestSignalType
impl Sync for TestSignalType
impl Unpin for TestSignalType
impl UnsafeUnpin for TestSignalType
impl UnwindSafe for TestSignalType
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