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]

Formats the value using the given formatter. Read more

impl Error for RendererDrawError
[src]

This method is soft-deprecated. Read more

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

impl Display for RendererDrawError
[src]

Formats the value using the given formatter. Read more

impl From<BufferCreationError> for RendererDrawError
[src]

Performs the conversion.

impl From<DrawError> for RendererDrawError
[src]

Performs the conversion.

impl From<BufferCreationError> for RendererDrawError
[src]

Performs the conversion.

impl From<BufferCreationError> for RendererDrawError
[src]

Performs the conversion.

Auto Trait Implementations