Skip to main content

ResourceLoadError

Trait ResourceLoadError 

Source
pub trait ResourceLoadError:
    'static
    + Debug
    + Display
    + Send
    + Sync { }
Expand description

A trait for resource load error.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<T> ResourceLoadError for T
where T: 'static + Debug + Display + Send + Sync,