[][src]Struct gfx::pso::buffer::RawVertexBuffer

pub struct RawVertexBuffer(_, _);

Raw vertex/instance buffer component. Can be used when the formats of vertex attributes are not known at compile time.

Trait Implementations

impl Clone for RawVertexBuffer[src]

impl<R: Resources> DataBind<R> for RawVertexBuffer[src]

type Data = RawBuffer<R>

The associated "data" type - a member of the PSO "data" struct.

impl<'a> DataLink<'a> for RawVertexBuffer[src]

type Init = (&'a [(&'a str, Element<Format>)], ElemStride, InstanceRate)

The assotiated "init" type - a member of the PSO "init" struct.

impl Debug for RawVertexBuffer[src]

impl Eq for RawVertexBuffer[src]

impl Hash for RawVertexBuffer[src]

impl PartialEq<RawVertexBuffer> for RawVertexBuffer[src]

impl StructuralEq for RawVertexBuffer[src]

impl StructuralPartialEq for RawVertexBuffer[src]

Auto Trait Implementations

impl RefUnwindSafe for RawVertexBuffer

impl Send for RawVertexBuffer

impl Sync for RawVertexBuffer

impl Unpin for RawVertexBuffer

impl UnwindSafe for RawVertexBuffer

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.