pub enum ReverbType {
SmallRoom = 0,
MediumRoom = 1,
LargeRoom = 2,
MediumHall = 3,
LargeHall = 4,
Plate = 8,
}
Expand description
The type of reverb, used by GlobalParameterControl::reverb
.
Variants§
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 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