pub enum EffectFreq {
Hz(i32),
Khz(f32),
}Variants§
Trait Implementations§
Source§impl Clone for EffectFreq
impl Clone for EffectFreq
Source§fn clone(&self) -> EffectFreq
fn clone(&self) -> EffectFreq
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 EffectFreq
impl Debug for EffectFreq
Source§impl Display for EffectFreq
impl Display for EffectFreq
Source§impl From<&EffectFreq> for f32
impl From<&EffectFreq> for f32
Source§fn from(val: &EffectFreq) -> Self
fn from(val: &EffectFreq) -> Self
Converts to this type from the input type.
Source§impl PartialEq for EffectFreq
impl PartialEq for EffectFreq
Source§impl PartialOrd for EffectFreq
impl PartialOrd for EffectFreq
impl Copy for EffectFreq
impl StructuralPartialEq for EffectFreq
Auto Trait Implementations§
impl Freeze for EffectFreq
impl RefUnwindSafe for EffectFreq
impl Send for EffectFreq
impl Sync for EffectFreq
impl Unpin for EffectFreq
impl UnwindSafe for EffectFreq
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