Enum nanovg::CreateFontError [] [src]

pub enum CreateFontError {
    CStringError,
    InvalidPath,
    InvalidHandle,
}

Variants

Conversion from a Rust-utf8-string to a CString failed.

A specified path is invalid somehow.

The font handle returned by the ffi functions is invalid.

Trait Implementations

impl Debug for CreateFontError
[src]

[src]

Formats the value using the given formatter. Read more

impl From<NulError> for CreateFontError
[src]

[src]

Performs the conversion.

Auto Trait Implementations