pub enum ReloadError {
Provider(Vec<(String, LoadError)>),
Borrowed(Option<usize>),
}
Expand description
Defines the possible reload errors.
Variants§
Provider(Vec<(String, LoadError)>)
Indicates one or more provider load errors occurred.
Borrowed(Option<usize>)
Indicates reload cannot be performed because there are borrowed references. The number of references may be reported if known.
Trait Implementations§
Source§impl Clone for ReloadError
impl Clone for ReloadError
Source§fn clone(&self) -> ReloadError
fn clone(&self) -> ReloadError
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ReloadError
impl Debug for ReloadError
Source§impl PartialEq for ReloadError
impl PartialEq for ReloadError
impl StructuralPartialEq for ReloadError
Auto Trait Implementations§
impl Freeze for ReloadError
impl RefUnwindSafe for ReloadError
impl Send for ReloadError
impl Sync for ReloadError
impl Unpin for ReloadError
impl UnwindSafe for ReloadError
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