[][src]Enum reaper_medium::GetFocusedFxResult

pub enum GetFocusedFxResult {
    TrackFx {
        track_ref: TrackRef,
        fx_location: TrackFxLocation,
    },
    TakeFx {
        track_index: u32,
        item_index: u32,
        take_index: u32,
        fx_index: u32,
    },
}

Variants

TrackFx

The (last) focused FX is a track FX.

Fields of TrackFx

track_ref: TrackRef

Track on which the FX is located.

fx_location: TrackFxLocation

Location of the FX on that track.

TakeFx

The (last) focused FX is a take FX.

Fields of TakeFx

track_index: u32

Index of the track on which the item is located.

item_index: u32

Index of the item on that track.

take_index: u32

Index of the take within the item.

fx_index: u32

Index of the FX within the take FX chain.

Trait Implementations

impl Clone for GetFocusedFxResult[src]

impl Copy for GetFocusedFxResult[src]

impl Debug for GetFocusedFxResult[src]

impl Eq for GetFocusedFxResult[src]

impl Hash for GetFocusedFxResult[src]

impl PartialEq<GetFocusedFxResult> for GetFocusedFxResult[src]

impl StructuralEq for GetFocusedFxResult[src]

impl StructuralPartialEq for GetFocusedFxResult[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.