pub struct MissingResourcesError(pub Vec<ResourceType>);Expand description
Error returned when required resources are missing.
Tuple Fields§
§0: Vec<ResourceType>Trait Implementations§
Source§impl Debug for MissingResourcesError
impl Debug for MissingResourcesError
Source§impl Display for MissingResourcesError
impl Display for MissingResourcesError
Source§impl Error for MissingResourcesError
impl Error for MissingResourcesError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for MissingResourcesError
impl RefUnwindSafe for MissingResourcesError
impl Send for MissingResourcesError
impl Sync for MissingResourcesError
impl Unpin for MissingResourcesError
impl UnsafeUnpin for MissingResourcesError
impl UnwindSafe for MissingResourcesError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more