Enum surge_halfrate::imports::StereoChannel
source · [−]pub enum StereoChannel {
Left,
Right,
}
Variants
Left
Right
Implementations
Trait Implementations
sourceimpl Clone for StereoChannel
impl Clone for StereoChannel
sourcefn clone(&self) -> StereoChannel
fn clone(&self) -> StereoChannel
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 StereoChannel
impl Debug for StereoChannel
sourceimpl Display for StereoChannel
impl Display for StereoChannel
sourceimpl Hash for StereoChannel
impl Hash for StereoChannel
sourceimpl<T> Index<StereoChannel> for StereoChannelArray<T>
impl<T> Index<StereoChannel> for StereoChannelArray<T>
type Output = T
type Output = T
The returned type after indexing.
sourcefn index(
&self,
x: StereoChannel
) -> &<StereoChannelArray<T> as Index<StereoChannel>>::Output
fn index(
&self,
x: StereoChannel
) -> &<StereoChannelArray<T> as Index<StereoChannel>>::Output
Performs the indexing (container[index]
) operation. Read more
sourceimpl<T> IndexMut<StereoChannel> for StereoChannelArray<T>
impl<T> IndexMut<StereoChannel> for StereoChannelArray<T>
sourcefn index_mut(
&mut self,
x: StereoChannel
) -> &mut <StereoChannelArray<T> as Index<StereoChannel>>::Output
fn index_mut(
&mut self,
x: StereoChannel
) -> &mut <StereoChannelArray<T> as Index<StereoChannel>>::Output
Performs the mutable indexing (container[index]
) operation. Read more
sourceimpl Ord for StereoChannel
impl Ord for StereoChannel
sourceimpl PartialEq<StereoChannel> for StereoChannel
impl PartialEq<StereoChannel> for StereoChannel
sourceimpl PartialOrd<StereoChannel> for StereoChannel
impl PartialOrd<StereoChannel> for StereoChannel
sourcefn partial_cmp(&self, other: &StereoChannel) -> Option<Ordering>
fn partial_cmp(&self, other: &StereoChannel) -> 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 StereoChannel
impl<'_> TryFrom<&'_ str> for StereoChannel
sourceimpl TryFrom<u32> for StereoChannel
impl TryFrom<u32> for StereoChannel
sourceimpl TryFrom<u64> for StereoChannel
impl TryFrom<u64> for StereoChannel
sourceimpl TryFrom<usize> for StereoChannel
impl TryFrom<usize> for StereoChannel
impl Copy for StereoChannel
impl Eq for StereoChannel
impl StructuralEq for StereoChannel
impl StructuralPartialEq for StereoChannel
Auto Trait Implementations
impl RefUnwindSafe for StereoChannel
impl Send for StereoChannel
impl Sync for StereoChannel
impl Unpin for StereoChannel
impl UnwindSafe for StereoChannel
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