pub enum FetchState {
Idle,
Pending,
Receiving,
Done,
}Expand description
Fetch lifecycle states.
Variants§
Trait Implementations§
Source§impl Clone for FetchState
impl Clone for FetchState
Source§fn clone(&self) -> FetchState
fn clone(&self) -> FetchState
Returns a duplicate 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 FetchState
impl Debug for FetchState
Source§impl PartialEq for FetchState
impl PartialEq for FetchState
impl Copy for FetchState
impl Eq for FetchState
impl StructuralPartialEq for FetchState
Auto Trait Implementations§
impl Freeze for FetchState
impl RefUnwindSafe for FetchState
impl Send for FetchState
impl Sync for FetchState
impl Unpin for FetchState
impl UnsafeUnpin for FetchState
impl UnwindSafe for FetchState
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