pub enum LoadStatus {
InvalidPath(String),
UnknownProtocol(String),
FetchError(FetchStatus),
NoFetchEngine,
}Variants§
Trait Implementations§
Source§impl Clone for LoadStatus
impl Clone for LoadStatus
Source§fn clone(&self) -> LoadStatus
fn clone(&self) -> LoadStatus
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 LoadStatus
impl Debug for LoadStatus
Source§impl PartialEq for LoadStatus
impl PartialEq for LoadStatus
Source§fn eq(&self, other: &LoadStatus) -> bool
fn eq(&self, other: &LoadStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for LoadStatus
Auto Trait Implementations§
impl Freeze for LoadStatus
impl RefUnwindSafe for LoadStatus
impl Send for LoadStatus
impl Sync for LoadStatus
impl Unpin for LoadStatus
impl UnsafeUnpin for LoadStatus
impl UnwindSafe for LoadStatus
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