[][src]Struct web_glitz::pipeline::graphics::GraphicsPipelineDescriptor

pub struct GraphicsPipelineDescriptor<V, R, Tf> { /* fields omitted */ }

Provides a description from which a [GraphicsPipeline] may be created.

See [RenderingContext::create_graphics_pipeline] for details on how a GraphicsPipelineDescriptor may be used to create a [GraphicsPipeline].

A GraphicsPipelineDescriptor is constructed through a GraphicsPipelineDescriptorBuilder. You may begin building a new GraphicsPipelineDescriptor with GraphicsPipelineDescriptor::begin. See GraphicsPipelineDescriptorBuilder for details on how a GraphicsPipelineDescriptor is specified.

Implementations

impl GraphicsPipelineDescriptor<(), (), ()>[src]

pub fn begin() -> GraphicsPipelineDescriptorBuilder<(), (), (), (), (), ()>[src]

Begins building a new GraphicsPipelineDescriptor.

Returns a GraphicsPipelineDescriptorBuilder, see GraphicsPipelineDescriptorBuilder for details on it is used to construct a buildable GraphicsPipelineDescriptor.

Auto Trait Implementations

impl<V, R, Tf> !RefUnwindSafe for GraphicsPipelineDescriptor<V, R, Tf>

impl<V, R, Tf> !Send for GraphicsPipelineDescriptor<V, R, Tf>

impl<V, R, Tf> !Sync for GraphicsPipelineDescriptor<V, R, Tf>

impl<V, R, Tf> Unpin for GraphicsPipelineDescriptor<V, R, Tf> where
    R: Unpin,
    Tf: Unpin,
    V: Unpin

impl<V, R, Tf> !UnwindSafe for GraphicsPipelineDescriptor<V, R, Tf>

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<D, T> IntoBuffer<T> for D where
    D: Borrow<T> + 'static,
    T: Copy + 'static, 
[src]

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.