[][src]Enum reaper_medium::ProjectContext

pub enum ProjectContext {
    CurrentProject,
    Proj(ReaProject),
}

Determines the project in which a function should be executed.

Variants

CurrentProject

Project in the currently open tab.

A particular project, not necessarily the one in the currently open tab.

Implementations

impl ProjectContext[src]

pub fn to_raw(&self) -> *mut ReaProject[src]

Converts this value to a raw pointer as expected by the low-level API.

Trait Implementations

impl Clone for ProjectContext[src]

impl Copy for ProjectContext[src]

impl Debug for ProjectContext[src]

impl Eq for ProjectContext[src]

impl Hash for ProjectContext[src]

impl PartialEq<ProjectContext> for ProjectContext[src]

impl StructuralEq for ProjectContext[src]

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