Enum nannou::draw::backend::glium::RendererDrawError [] [src]

pub enum RendererDrawError {
    BufferCreation(BufferCreationError),
    Draw(DrawError),
}

Errors that might occur during a call to Renderer::draw.

Variants

Trait Implementations

impl Debug for RendererDrawError
[src]

[src]

Formats the value using the given formatter. Read more

impl Error for RendererDrawError
[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 RendererDrawError
[src]

[src]

Formats the value using the given formatter. Read more

impl From<BufferCreationError> for RendererDrawError
[src]

[src]

Performs the conversion.

impl From<DrawError> for RendererDrawError
[src]

[src]

Performs the conversion.

impl From<BufferCreationError> for RendererDrawError
[src]

[src]

Performs the conversion.

impl From<BufferCreationError> for RendererDrawError
[src]

[src]

Performs the conversion.

Auto Trait Implementations