Enum nannou::ui::backend::glium::DrawError[][src]

pub enum DrawError {
    Buffer(CreationError),
    Draw(DrawError),
}

Possible errors that may occur during a call to Renderer::draw.

Variants

Errors that might occur upon construction of a glium::VertexBuffer.

Errors that might occur when drawing to the glium::Surface.

Trait Implementations

impl Debug for DrawError
[src]

Formats the value using the given formatter. Read more

impl From<DrawError> for DrawError
[src]

Performs the conversion.

impl From<CreationError> for DrawError
[src]

Performs the conversion.

impl Error for DrawError
[src]

This method is soft-deprecated. Read more

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

impl Display for DrawError
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for DrawError

impl Sync for DrawError