pub enum FetchResult {
Ok,
Err,
FileExists,
}
Variants§
Trait Implementations§
Source§impl Clone for FetchResult
impl Clone for FetchResult
Source§fn clone(&self) -> FetchResult
fn clone(&self) -> FetchResult
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 FetchResult
impl Debug for FetchResult
Source§impl Hash for FetchResult
impl Hash for FetchResult
Source§impl Ord for FetchResult
impl Ord for FetchResult
Source§fn cmp(&self, other: &FetchResult) -> Ordering
fn cmp(&self, other: &FetchResult) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for FetchResult
impl PartialEq for FetchResult
Source§impl PartialOrd for FetchResult
impl PartialOrd for FetchResult
impl Copy for FetchResult
impl Eq for FetchResult
impl StructuralPartialEq for FetchResult
Auto Trait Implementations§
impl Freeze for FetchResult
impl RefUnwindSafe for FetchResult
impl Send for FetchResult
impl Sync for FetchResult
impl Unpin for FetchResult
impl UnwindSafe for FetchResult
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