pub enum AlgorithmCategory {
Generator,
Filter,
Effect,
Analyzer,
Utility,
}Expand description
Category of an algorithm (for introspection / UI)
Variants§
Generator
Signal generator (oscillator, noise, etc.)
Filter
Audio filter (biquad, SVF, etc.)
Effect
Audio effect (delay, distortion, etc.)
Analyzer
Signal analyzer (meter, scope, etc.)
Utility
Utility / helper (smoother, mapper, etc.)
Implementations§
Trait Implementations§
Source§impl Clone for AlgorithmCategory
impl Clone for AlgorithmCategory
Source§fn clone(&self) -> AlgorithmCategory
fn clone(&self) -> AlgorithmCategory
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 AlgorithmCategory
impl Debug for AlgorithmCategory
Source§impl Hash for AlgorithmCategory
impl Hash for AlgorithmCategory
Source§impl PartialEq for AlgorithmCategory
impl PartialEq for AlgorithmCategory
impl Copy for AlgorithmCategory
impl Eq for AlgorithmCategory
impl StructuralPartialEq for AlgorithmCategory
Auto Trait Implementations§
impl Freeze for AlgorithmCategory
impl RefUnwindSafe for AlgorithmCategory
impl Send for AlgorithmCategory
impl Sync for AlgorithmCategory
impl Unpin for AlgorithmCategory
impl UnsafeUnpin for AlgorithmCategory
impl UnwindSafe for AlgorithmCategory
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