[][src]Struct nuklear_backend_gfx::pipe::Init

pub struct Init<'a> {
    pub vbuf: <VertexBuffer<Vertex> as DataLink<'a>>::Init,
    pub tex: <TextureSampler<[f32; 4]> as DataLink<'a>>::Init,
    pub output: <BlendTarget<ColorFormat> as DataLink<'a>>::Init,
    pub locals: <ConstantBuffer<Locals> as DataLink<'a>>::Init,
    pub scissors: <Scissor as DataLink<'a>>::Init,
}

Fields

vbuf: <VertexBuffer<Vertex> as DataLink<'a>>::Inittex: <TextureSampler<[f32; 4]> as DataLink<'a>>::Initoutput: <BlendTarget<ColorFormat> as DataLink<'a>>::Initlocals: <ConstantBuffer<Locals> as DataLink<'a>>::Initscissors: <Scissor as DataLink<'a>>::Init

Trait Implementations

impl<'a> Clone for Init<'a>[src]

impl<'a> Debug for Init<'a>[src]

impl<'a> PartialEq<Init<'a>> for Init<'a>[src]

impl<'a> PipelineInit for Init<'a>[src]

type Meta = Meta

The associated "meta" struct.

impl<'a> StructuralPartialEq for Init<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for Init<'a>

impl<'a> Send for Init<'a>

impl<'a> Sync for Init<'a>

impl<'a> Unpin for Init<'a>

impl<'a> UnwindSafe for Init<'a>

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.