[][src]Struct lv2_core::port::OutputPort

pub struct OutputPort<T: PortType> { /* fields omitted */ }

Handle for output ports.

Fields of this type can be dereferenced to the output type of the port type.

Trait Implementations

impl<T: PortType> Deref for OutputPort<T>[src]

type Target = T::OutputPortType

The resulting type after dereferencing.

impl<T: PortType> DerefMut for OutputPort<T>[src]

impl<T: PortType> PortHandle for OutputPort<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for OutputPort<T> where
    <T as PortType>::OutputPortType: RefUnwindSafe

impl<T> Send for OutputPort<T> where
    <T as PortType>::OutputPortType: Send

impl<T> Sync for OutputPort<T> where
    <T as PortType>::OutputPortType: Sync

impl<T> Unpin for OutputPort<T> where
    <T as PortType>::OutputPortType: Unpin

impl<T> UnwindSafe for OutputPort<T> where
    <T as PortType>::OutputPortType: UnwindSafe

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, 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.