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

pub struct RawGlobal(_);

Raw global (uniform) constant component. Describes a free-standing value passed into the shader, which is not enclosed in any constant buffer.

Trait Implementations

impl Clone for RawGlobal[src]

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

type Data = UniformValue

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

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

type Init = &'a str

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

impl Debug for RawGlobal[src]

impl Eq for RawGlobal[src]

impl Hash for RawGlobal[src]

impl PartialEq<RawGlobal> for RawGlobal[src]

impl StructuralEq for RawGlobal[src]

impl StructuralPartialEq for RawGlobal[src]

Auto Trait Implementations

impl RefUnwindSafe for RawGlobal

impl Send for RawGlobal

impl Sync for RawGlobal

impl Unpin for RawGlobal

impl UnwindSafe for RawGlobal

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.