Enum vulkano::pipeline::shader::EmptyEntryPointDummy [] [src]

pub enum EmptyEntryPointDummy {}

A dummy that implements GraphicsEntryPointAbstract and EntryPointAbstract.

When a function has a signature like: fn foo<S: EntryPointAbstract>(shader: Option<S>), you can pass None::<EmptyEntryPointDummy>.

This object is meant to be a replacement to ! before it is stabilized.

Trait Implementations

impl Debug for EmptyEntryPointDummy
[src]

[src]

Formats the value using the given formatter. Read more

impl Copy for EmptyEntryPointDummy
[src]

impl Clone for EmptyEntryPointDummy
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl EntryPointAbstract for EmptyEntryPointDummy
[src]

[src]

Returns the module this entry point comes from.

[src]

Returns the name of the entry point.

[src]

Returns the pipeline layout used by the shader stage.

impl GraphicsEntryPointAbstract for EmptyEntryPointDummy
[src]

[src]

Returns the input attributes used by the shader stage.

[src]

Returns the output attributes used by the shader stage.

[src]

Returns the type of shader.

Auto Trait Implementations