Enum surge_traits::imports::FlangerType
source · [−]pub enum FlangerType {
Unison,
Doppler,
Arp,
}
Variants
Unison
Doppler
Arp
Implementations
sourceimpl FlangerType
impl FlangerType
pub fn feedback_scale(&self) -> f32
Trait Implementations
sourceimpl Clone for FlangerType
impl Clone for FlangerType
sourcefn clone(&self) -> FlangerType
fn clone(&self) -> FlangerType
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for FlangerType
impl Debug for FlangerType
sourceimpl Display for FlangerType
impl Display for FlangerType
sourceimpl Hash for FlangerType
impl Hash for FlangerType
sourceimpl<T> Index<FlangerType> for FlangerTypeArray<T>
impl<T> Index<FlangerType> for FlangerTypeArray<T>
type Output = T
type Output = T
The returned type after indexing.
sourcefn index(
&self,
x: FlangerType
) -> &<FlangerTypeArray<T> as Index<FlangerType>>::Output
fn index(
&self,
x: FlangerType
) -> &<FlangerTypeArray<T> as Index<FlangerType>>::Output
Performs the indexing (container[index]
) operation. Read more
sourceimpl<T> IndexMut<FlangerType> for FlangerTypeArray<T>
impl<T> IndexMut<FlangerType> for FlangerTypeArray<T>
sourcefn index_mut(
&mut self,
x: FlangerType
) -> &mut <FlangerTypeArray<T> as Index<FlangerType>>::Output
fn index_mut(
&mut self,
x: FlangerType
) -> &mut <FlangerTypeArray<T> as Index<FlangerType>>::Output
Performs the mutable indexing (container[index]
) operation. Read more
sourceimpl Ord for FlangerType
impl Ord for FlangerType
sourceimpl PartialEq<FlangerType> for FlangerType
impl PartialEq<FlangerType> for FlangerType
sourceimpl PartialOrd<FlangerType> for FlangerType
impl PartialOrd<FlangerType> for FlangerType
sourcefn partial_cmp(&self, other: &FlangerType) -> Option<Ordering>
fn partial_cmp(&self, other: &FlangerType) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl<'_> TryFrom<&'_ str> for FlangerType
impl<'_> TryFrom<&'_ str> for FlangerType
sourceimpl TryFrom<u32> for FlangerType
impl TryFrom<u32> for FlangerType
sourceimpl TryFrom<u64> for FlangerType
impl TryFrom<u64> for FlangerType
sourceimpl TryFrom<usize> for FlangerType
impl TryFrom<usize> for FlangerType
impl Copy for FlangerType
impl Eq for FlangerType
impl StructuralEq for FlangerType
impl StructuralPartialEq for FlangerType
Auto Trait Implementations
impl RefUnwindSafe for FlangerType
impl Send for FlangerType
impl Sync for FlangerType
impl Unpin for FlangerType
impl UnwindSafe for FlangerType
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more