[][src]Enum reaper_medium::ProjectPart

#[repr(u32)]pub enum ProjectPart {
    Freeze,
    Fx,
    Items,
    MiscCfg,
    TrackCfg,
}

Part of a project that could have been affected by an undoable operation.

Variants

Freeze

Freeze state.

Fx

Track master FX.

Items

Track items.

MiscCfg

Loop selection, markers, regions and extensions.

TrackCfg

Track/master vol/pan/routing and aLL envelopes (master included).

Trait Implementations

impl BitAnd<ProjectPart> for ProjectPart[src]

type Output = BitFlags<ProjectPart>

The resulting type after applying the & operator.

impl BitOr<ProjectPart> for ProjectPart[src]

type Output = BitFlags<ProjectPart>

The resulting type after applying the | operator.

impl BitXor<ProjectPart> for ProjectPart[src]

type Output = BitFlags<ProjectPart>

The resulting type after applying the ^ operator.

impl Clone for ProjectPart[src]

impl Copy for ProjectPart[src]

impl Debug for ProjectPart[src]

impl Eq for ProjectPart[src]

impl Hash for ProjectPart[src]

impl Not for ProjectPart[src]

type Output = BitFlags<ProjectPart>

The resulting type after applying the ! operator.

impl PartialEq<ProjectPart> for ProjectPart[src]

impl RawBitFlags for ProjectPart[src]

impl RawBitFlags for ProjectPart[src]

type Type = u32

The underlying integer type.

impl StructuralEq for ProjectPart[src]

impl StructuralPartialEq for ProjectPart[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.