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

pub struct VertexBufferCommon<T, I = InstanceRate>(_, _);

Service struct to simplify the implementations of VertexBuffer and InstanceBuffer.

Trait Implementations

impl<T, I> Clone for VertexBufferCommon<T, I>[src]

impl<R: Resources, T, I> DataBind<R> for VertexBufferCommon<T, I>[src]

type Data = Buffer<R, T>

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

impl<'a, T: Structure<Format>, I: ToInstanceRate + 'a> DataLink<'a> for VertexBufferCommon<T, I>[src]

type Init = I::Init

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

impl<T, I> Debug for VertexBufferCommon<T, I>[src]

impl<T, I> Eq for VertexBufferCommon<T, I>[src]

impl<T, I> Hash for VertexBufferCommon<T, I>[src]

impl<T, I> PartialEq<VertexBufferCommon<T, I>> for VertexBufferCommon<T, I>[src]

Auto Trait Implementations

impl<T, I> RefUnwindSafe for VertexBufferCommon<T, I> where
    I: RefUnwindSafe,
    T: RefUnwindSafe

impl<T, I> Send for VertexBufferCommon<T, I> where
    I: Send,
    T: Send

impl<T, I> Sync for VertexBufferCommon<T, I> where
    I: Sync,
    T: Sync

impl<T, I> Unpin for VertexBufferCommon<T, I> where
    I: Unpin,
    T: Unpin

impl<T, I> UnwindSafe for VertexBufferCommon<T, I> where
    I: UnwindSafe,
    T: 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> 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.