Struct gfx::shade::core::ConstantBufferVar   
                   
                       [−]
                   
               [src]
pub struct ConstantBufferVar {
    pub name: String,
    pub slot: u8,
    pub size: usize,
    pub usage: Usage,
}A constant buffer.
Fields
name: String
                           Name of this constant buffer.
slot: u8
                           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.
Trait Implementations
impl PartialEq<ConstantBufferVar> for ConstantBufferVar[src]
fn eq(&self, __arg_0: &ConstantBufferVar) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &ConstantBufferVar) -> bool[src]
This method tests for !=.
impl Debug for ConstantBufferVar[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result<(), Error>[src]
Formats the value using the given formatter. Read more
impl Clone for ConstantBufferVar[src]
fn clone(&self) -> ConstantBufferVar[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more