[][src]Struct lv2_sys::LV2_Atom_Forge

#[repr(C)]pub struct LV2_Atom_Forge {
    pub buf: *mut u8,
    pub offset: u32,
    pub size: u32,
    pub sink: LV2_Atom_Forge_Sink,
    pub deref: LV2_Atom_Forge_Deref_Func,
    pub handle: LV2_Atom_Forge_Sink_Handle,
    pub stack: *mut LV2_Atom_Forge_Frame,
    pub Blank: LV2_URID,
    pub Bool: LV2_URID,
    pub Chunk: LV2_URID,
    pub Double: LV2_URID,
    pub Float: LV2_URID,
    pub Int: LV2_URID,
    pub Long: LV2_URID,
    pub Literal: LV2_URID,
    pub Object: LV2_URID,
    pub Path: LV2_URID,
    pub Property: LV2_URID,
    pub Resource: LV2_URID,
    pub Sequence: LV2_URID,
    pub String: LV2_URID,
    pub Tuple: LV2_URID,
    pub URI: LV2_URID,
    pub URID: LV2_URID,
    pub Vector: LV2_URID,
}

A "forge" for creating atoms by appending to a buffer.

Fields

buf: *mut u8offset: u32size: u32sink: LV2_Atom_Forge_Sinkderef: LV2_Atom_Forge_Deref_Funchandle: LV2_Atom_Forge_Sink_Handlestack: *mut LV2_Atom_Forge_FrameBlank: LV2_URIDBool: LV2_URIDChunk: LV2_URIDDouble: LV2_URIDFloat: LV2_URIDInt: LV2_URIDLong: LV2_URIDLiteral: LV2_URIDObject: LV2_URIDPath: LV2_URIDProperty: LV2_URIDResource: LV2_URIDSequence: LV2_URIDString: LV2_URIDTuple: LV2_URIDURI: LV2_URIDURID: LV2_URIDVector: LV2_URID

Trait Implementations

impl Clone for LV2_Atom_Forge[src]

impl Copy for LV2_Atom_Forge[src]

impl Debug for LV2_Atom_Forge[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.