Enum reaper_medium::SetTrackUiFlags
source · [−]#[repr(u32)]
pub enum SetTrackUiFlags {
PreventTrackGrouping,
PreventSelectionGanging,
}
Expand description
Defines which track grouping behaviors to prevent when using the set_track_ui_*
functions.
Variants
PreventTrackGrouping
PreventSelectionGanging
Trait Implementations
sourceimpl BitAnd<SetTrackUiFlags> for SetTrackUiFlags
impl BitAnd<SetTrackUiFlags> for SetTrackUiFlags
type Output = BitFlags<SetTrackUiFlags, <SetTrackUiFlags as RawBitFlags>::Numeric>
type Output = BitFlags<SetTrackUiFlags, <SetTrackUiFlags as RawBitFlags>::Numeric>
The resulting type after applying the
&
operator.sourceimpl BitFlag for SetTrackUiFlags
impl BitFlag for SetTrackUiFlags
sourceimpl BitOr<SetTrackUiFlags> for SetTrackUiFlags
impl BitOr<SetTrackUiFlags> for SetTrackUiFlags
type Output = BitFlags<SetTrackUiFlags, <SetTrackUiFlags as RawBitFlags>::Numeric>
type Output = BitFlags<SetTrackUiFlags, <SetTrackUiFlags as RawBitFlags>::Numeric>
The resulting type after applying the
|
operator.sourceimpl BitXor<SetTrackUiFlags> for SetTrackUiFlags
impl BitXor<SetTrackUiFlags> for SetTrackUiFlags
type Output = BitFlags<SetTrackUiFlags, <SetTrackUiFlags as RawBitFlags>::Numeric>
type Output = BitFlags<SetTrackUiFlags, <SetTrackUiFlags as RawBitFlags>::Numeric>
The resulting type after applying the
^
operator.sourceimpl Clone for SetTrackUiFlags
impl Clone for SetTrackUiFlags
sourcefn clone(&self) -> SetTrackUiFlags
fn clone(&self) -> SetTrackUiFlags
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 SetTrackUiFlags
impl Debug for SetTrackUiFlags
sourceimpl Hash for SetTrackUiFlags
impl Hash for SetTrackUiFlags
sourceimpl Not for SetTrackUiFlags
impl Not for SetTrackUiFlags
type Output = BitFlags<SetTrackUiFlags, <SetTrackUiFlags as RawBitFlags>::Numeric>
type Output = BitFlags<SetTrackUiFlags, <SetTrackUiFlags as RawBitFlags>::Numeric>
The resulting type after applying the
!
operator.sourceimpl PartialEq<SetTrackUiFlags> for SetTrackUiFlags
impl PartialEq<SetTrackUiFlags> for SetTrackUiFlags
sourcefn eq(&self, other: &SetTrackUiFlags) -> bool
fn eq(&self, other: &SetTrackUiFlags) -> bool
sourceimpl RawBitFlags for SetTrackUiFlags
impl RawBitFlags for SetTrackUiFlags
sourceconst EMPTY: Self::Numeric = {transmute(0x00000000): <flags::SetTrackUiFlags as enumflags2::_internal::RawBitFlags>::Numeric}
const EMPTY: Self::Numeric = {transmute(0x00000000): <flags::SetTrackUiFlags as enumflags2::_internal::RawBitFlags>::Numeric}
A value with no bits set.
sourceconst DEFAULT: Self::Numeric = {transmute(0x00000000): <flags::SetTrackUiFlags as enumflags2::_internal::RawBitFlags>::Numeric}
const DEFAULT: Self::Numeric = {transmute(0x00000000): <flags::SetTrackUiFlags as enumflags2::_internal::RawBitFlags>::Numeric}
The value used by the Default implementation. Equivalent to EMPTY, unless
customized. Read more
sourceconst ALL_BITS: Self::Numeric = {transmute(0x00000003): <flags::SetTrackUiFlags as enumflags2::_internal::RawBitFlags>::Numeric}
const ALL_BITS: Self::Numeric = {transmute(0x00000003): <flags::SetTrackUiFlags as enumflags2::_internal::RawBitFlags>::Numeric}
A value with all flag bits set.
sourceconst BITFLAGS_TYPE_NAME: &'static str = _
const BITFLAGS_TYPE_NAME: &'static str = _
The name of the type for debug formatting purposes. Read more
impl Copy for SetTrackUiFlags
impl Eq for SetTrackUiFlags
impl StructuralEq for SetTrackUiFlags
impl StructuralPartialEq for SetTrackUiFlags
Auto Trait Implementations
impl RefUnwindSafe for SetTrackUiFlags
impl Send for SetTrackUiFlags
impl Sync for SetTrackUiFlags
impl Unpin for SetTrackUiFlags
impl UnwindSafe for SetTrackUiFlags
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