[][src]Struct nuklear_backend_gfx::pipe::Data

pub struct Data<R: Resources> {
    pub vbuf: <VertexBuffer<Vertex> as DataBind<R>>::Data,
    pub tex: <TextureSampler<[f32; 4]> as DataBind<R>>::Data,
    pub output: <BlendTarget<ColorFormat> as DataBind<R>>::Data,
    pub locals: <ConstantBuffer<Locals> as DataBind<R>>::Data,
    pub scissors: <Scissor as DataBind<R>>::Data,
}

Fields

vbuf: <VertexBuffer<Vertex> as DataBind<R>>::Datatex: <TextureSampler<[f32; 4]> as DataBind<R>>::Dataoutput: <BlendTarget<ColorFormat> as DataBind<R>>::Datalocals: <ConstantBuffer<Locals> as DataBind<R>>::Datascissors: <Scissor as DataBind<R>>::Data

Trait Implementations

impl<R: Clone + Resources> Clone for Data<R>[src]

impl<R: Debug + Resources> Debug for Data<R>[src]

impl<R: PartialEq + Resources> PartialEq<Data<R>> for Data<R>[src]

impl<R: Resources> PipelineData<R> for Data<R>[src]

type Meta = Meta

The associated "meta" struct.

impl<R: Resources> StructuralPartialEq for Data<R>[src]

Auto Trait Implementations

impl<R> !RefUnwindSafe for Data<R>

impl<R> Send for Data<R> where
    <R as Resources>::Buffer: Send + Sync,
    <R as Resources>::Mapping: Send,
    <R as Resources>::RenderTargetView: Send + Sync,
    <R as Resources>::Sampler: Send + Sync,
    <R as Resources>::ShaderResourceView: Send + Sync,
    <R as Resources>::Texture: Send + Sync

impl<R> Sync for Data<R> where
    <R as Resources>::Buffer: Send + Sync,
    <R as Resources>::Mapping: Send,
    <R as Resources>::RenderTargetView: Send + Sync,
    <R as Resources>::Sampler: Send + Sync,
    <R as Resources>::ShaderResourceView: Send + Sync,
    <R as Resources>::Texture: Send + Sync

impl<R> Unpin for Data<R>

impl<R> !UnwindSafe for Data<R>

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.