Enum amethyst_assets::ErrorKind [−]
pub enum ErrorKind {
Msg(String),
FromUtf8(FromUtf8Error),
Utf8(Utf8Error),
Asset(String),
Source,
Format(&'static str),
UnusedHandle,
// some variants omitted
}The kind of an error.
Variants
Msg(String)A convenient variant for String.
FromUtf8(FromUtf8Error)Wraps a UTF-8 error
Utf8(Utf8Error)Wraps a UTF-8 error
Asset(String)Returned if an asset with a given name failed to load.
SourceReturned if a source could not retrieve something.
Format(&'static str)Returned if a format failed to load the asset data.
UnusedHandleReturned if an asset is loaded and never used.
Methods
impl ErrorKind
impl ErrorKindpub fn description(&self) -> &str
pub fn description(&self) -> &strA string describing the error kind.
Trait Implementations
impl From<ErrorKind> for Error
impl From<ErrorKind> for Errorimpl Debug for ErrorKind
impl Debug for ErrorKindimpl Display for ErrorKind
impl Display for ErrorKindimpl<'a> From<&'a str> for ErrorKind
impl<'a> From<&'a str> for ErrorKindimpl From<String> for ErrorKind
impl From<String> for ErrorKindimpl From<Error> for ErrorKind
impl From<Error> for ErrorKind