[][src]Struct gfx_core::shade::ConstantBufferVar

pub struct ConstantBufferVar {
    pub name: String,
    pub slot: ConstantBufferSlot,
    pub size: usize,
    pub usage: Usage,
    pub elements: Vec<ConstVar>,
}

A constant buffer.

Fields

name: String

Name of this constant buffer.

slot: ConstantBufferSlot

Slot of the constant buffer.

size: usize

Size (in bytes) of this buffer's data.

usage: Usage

What program stage this buffer is used in.

elements: Vec<ConstVar>

List of individual elements in this buffer.

Trait Implementations

impl Clone for ConstantBufferVar[src]

impl Debug for ConstantBufferVar[src]

impl Eq for ConstantBufferVar[src]

impl Hash for ConstantBufferVar[src]

impl PartialEq<ConstantBufferVar> for ConstantBufferVar[src]

impl StructuralEq for ConstantBufferVar[src]

impl StructuralPartialEq for ConstantBufferVar[src]

Auto Trait Implementations

impl RefUnwindSafe for ConstantBufferVar

impl Send for ConstantBufferVar

impl Sync for ConstantBufferVar

impl Unpin for ConstantBufferVar

impl UnwindSafe for ConstantBufferVar

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.