Struct rsynth::backend::jack_backend::JackHost[][src]

pub struct JackHost<'c, 'mp, 'mw> { /* fields omitted */ }

Used to communicate with Jack.

You don’t need to instantiate this yourself: it is passed as the context parameter to the render_audio method when using the run function.

Implementations

impl<'c, 'mp, 'mw> JackHost<'c, 'mp, 'mw>[src]

pub fn client(&self) -> &'c Client[src]

Get access to the underlying Client so that you can use Jack-specific features.

Trait Implementations

impl<'c, 'mp, 'mw> EventHandler<Indexed<Timed<RawMidiEvent>>> for JackHost<'c, 'mp, 'mw>[src]

impl<'c, 'mp, 'mw, 'e> EventHandler<Indexed<Timed<SysExEvent<'e>>>> for JackHost<'c, 'mp, 'mw>[src]

impl<'c, 'mp, 'mw> HostInterface for JackHost<'c, 'mp, 'mw>[src]

impl<'c, 'mp, 'mw> Stop for JackHost<'c, 'mp, 'mw>[src]

Auto Trait Implementations

impl<'c, 'mp, 'mw> !RefUnwindSafe for JackHost<'c, 'mp, 'mw>

impl<'c, 'mp, 'mw> !Send for JackHost<'c, 'mp, 'mw>

impl<'c, 'mp, 'mw> !Sync for JackHost<'c, 'mp, 'mw>

impl<'c, 'mp, 'mw> Unpin for JackHost<'c, 'mp, 'mw> where
    'mw: 'mp, 

impl<'c, 'mp, 'mw> !UnwindSafe for JackHost<'c, 'mp, 'mw>

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<S, T> Duplex<S> for T where
    T: FromSample<S> + ToSample<S>, 

impl<T, E> EventHandlerExt<E> for T where
    T: EventHandler<E> + ?Sized
[src]

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

impl<S> FromSample<S> for S

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

impl<T, U> ToSample<U> for T where
    U: FromSample<T>, 

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.