Enum vulkano::command_buffer::validity::CheckPushConstantsValidityError [] [src]

pub enum CheckPushConstantsValidityError {
    IncompatiblePushConstants,
}

Error that can happen when checking push constants validity.

Variants

The push constants are incompatible with the pipeline layout.

Trait Implementations

impl Debug for CheckPushConstantsValidityError
[src]

[src]

Formats the value using the given formatter. Read more

impl Copy for CheckPushConstantsValidityError
[src]

impl Clone for CheckPushConstantsValidityError
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Error for CheckPushConstantsValidityError
[src]

[src]

A short description of the error. Read more

1.0.0
[src]

The lower-level cause of this error, if any. Read more

impl Display for CheckPushConstantsValidityError
[src]

[src]

Formats the value using the given formatter. Read more

impl From<CheckPushConstantsValidityError> for DispatchError
[src]

[src]

Performs the conversion.

impl From<CheckPushConstantsValidityError> for DrawError
[src]

[src]

Performs the conversion.

impl From<CheckPushConstantsValidityError> for DrawIndexedError
[src]

[src]

Performs the conversion.

impl From<CheckPushConstantsValidityError> for DrawIndirectError
[src]

[src]

Performs the conversion.

Auto Trait Implementations