[][src]Struct lv2_atom::vector::Vector

pub struct Vector<C: ScalarAtom> { /* fields omitted */ }

An atom containg an array of scalar atom bodies.

See also the module documentation.

Trait Implementations

impl<'a, 'b, C: ScalarAtom> Atom<'a, 'b> for Vector<C> where
    'a: 'b,
    C: 'b, 
[src]

type ReadParameter = URID<C>

The atom-specific parameter of the read function. Read more

type ReadHandle = &'a [C::InternalType]

The return value of the read function. Read more

type WriteParameter = URID<C>

The atom-specific parameter of the write function. Read more

type WriteHandle = VectorWriter<'a, 'b, C>

The return value of the write function. Read more

impl<C: ScalarAtom> UriBound for Vector<C>[src]

Auto Trait Implementations

impl<C> RefUnwindSafe for Vector<C> where
    C: RefUnwindSafe

impl<C> Send for Vector<C> where
    C: Send

impl<C> Sync for Vector<C> where
    C: Sync

impl<C> Unpin for Vector<C> where
    C: Unpin

impl<C> UnwindSafe for Vector<C> where
    C: UnwindSafe

Blanket Implementations

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

impl<'a, 'b, A> Atom<'a, 'b> for A where
    'a: 'b,
    A: ScalarAtom
[src]

type ReadParameter = ()

The atom-specific parameter of the read function. Read more

type ReadHandle = <A as ScalarAtom>::InternalType

The return value of the read function. Read more

type WriteParameter = <A as ScalarAtom>::InternalType

The atom-specific parameter of the write function. Read more

type WriteHandle = &'a mut <A as ScalarAtom>::InternalType

The return value of the write function. Read more

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.