Enum reaper_medium::TrackSoloOperation
source · [−]pub enum TrackSoloOperation {
Toggle,
UnsetSolo,
SetSolo,
SetSoloIgnoreRouting,
SetSoloInPlace,
}
Expand description
Defines which solo mode to set.
Variants
Toggle
Toggles the current state.
UnsetSolo
Unsets solo.
SetSolo
Sets solo (default mode).
SetSoloIgnoreRouting
Sets solo (non-solo-in-place).
SetSoloInPlace
Sets solo-in-place.
Implementations
Trait Implementations
sourceimpl Clone for TrackSoloOperation
impl Clone for TrackSoloOperation
sourcefn clone(&self) -> TrackSoloOperation
fn clone(&self) -> TrackSoloOperation
Returns a copy of the value. Read more
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for TrackSoloOperation
impl Debug for TrackSoloOperation
sourceimpl Hash for TrackSoloOperation
impl Hash for TrackSoloOperation
sourceimpl PartialEq<TrackSoloOperation> for TrackSoloOperation
impl PartialEq<TrackSoloOperation> for TrackSoloOperation
sourcefn eq(&self, other: &TrackSoloOperation) -> bool
fn eq(&self, other: &TrackSoloOperation) -> bool
impl Copy for TrackSoloOperation
impl Eq for TrackSoloOperation
impl StructuralEq for TrackSoloOperation
impl StructuralPartialEq for TrackSoloOperation
Auto Trait Implementations
impl RefUnwindSafe for TrackSoloOperation
impl Send for TrackSoloOperation
impl Sync for TrackSoloOperation
impl Unpin for TrackSoloOperation
impl UnwindSafe for TrackSoloOperation
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
sourcefn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
Convert
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
. Read moresourcefn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
. Read moresourcefn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s. Read moresourcefn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s. Read more