Enum vulkano::swapchain::CapabilitiesError [] [src]

#[repr(u32)]
pub enum CapabilitiesError { OomError(OomError), SurfaceLost, }

Error that can happen when retreiving a surface's capabilities.

Variants

Not enough memory.

The surface is no longer accessible and must be recreated.

Trait Implementations

impl Copy for CapabilitiesError
[src]

impl Clone for CapabilitiesError
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for CapabilitiesError
[src]

[src]

Formats the value using the given formatter.

impl PartialEq for CapabilitiesError
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Eq for CapabilitiesError
[src]

impl Error for CapabilitiesError
[src]

[src]

A short description of the error. Read more

[src]

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

impl Display for CapabilitiesError
[src]

[src]

Formats the value using the given formatter. Read more

impl From<OomError> for CapabilitiesError
[src]

[src]

Performs the conversion.

impl From<Error> for CapabilitiesError
[src]

[src]

Performs the conversion.