pub enum ReverbType {
Room1,
Room2,
Room3,
Hall1,
Hall2,
Plate,
Delay,
Echo,
}
Expand description
Type of reverb DSP.
Variants§
Room1
Room 1.
Room2
Room 2.
Room3
Room 3.
Hall1
Hall 1.
Hall2
Hall 2.
Plate
Plate.
Delay
Delay.
Echo
Echo.
Trait Implementations§
Source§impl Clone for ReverbType
impl Clone for ReverbType
Source§fn clone(&self) -> ReverbType
fn clone(&self) -> ReverbType
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 ReverbType
impl Debug for ReverbType
Source§impl Default for ReverbType
impl Default for ReverbType
Source§impl PartialEq for ReverbType
impl PartialEq for ReverbType
impl Copy for ReverbType
impl Eq for ReverbType
impl StructuralPartialEq for ReverbType
Auto Trait Implementations§
impl Freeze for ReverbType
impl RefUnwindSafe for ReverbType
impl Send for ReverbType
impl Sync for ReverbType
impl Unpin for ReverbType
impl UnwindSafe for ReverbType
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