pub enum SplitPoint {
Output,
Mixer,
Reserved(u8),
}
Expand description
The point of split.
Variants§
Trait Implementations§
Source§impl Clone for SplitPoint
impl Clone for SplitPoint
Source§fn clone(&self) -> SplitPoint
fn clone(&self) -> SplitPoint
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 SplitPoint
impl Debug for SplitPoint
Source§impl Default for SplitPoint
impl Default for SplitPoint
Source§impl From<SplitPoint> for u8
impl From<SplitPoint> for u8
Source§fn from(point: SplitPoint) -> Self
fn from(point: SplitPoint) -> Self
Converts to this type from the input type.
Source§impl From<u8> for SplitPoint
impl From<u8> for SplitPoint
Source§impl PartialEq for SplitPoint
impl PartialEq for SplitPoint
impl Copy for SplitPoint
impl Eq for SplitPoint
impl StructuralPartialEq for SplitPoint
Auto Trait Implementations§
impl Freeze for SplitPoint
impl RefUnwindSafe for SplitPoint
impl Send for SplitPoint
impl Sync for SplitPoint
impl Unpin for SplitPoint
impl UnwindSafe for SplitPoint
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