pub enum Status {
Fetching,
Success,
Idle,
}
Expand description
The status of a query.
§States
Fetching
- Query data is currently being fetched. This might be because no data is available (QueryData::Loading
) or because the data is considered stale.Success
- Query data is available and fresh.Idle
- Query is disabled from running.
Variants§
Fetching
Query data is currently being fetched. This might be because
no data is available (QueryData::Loading
) or because the data is
Success
Query data is available and fresh.
Idle
Query is disabled from running.
Trait Implementations§
impl Copy for Status
impl Eq for Status
impl StructuralPartialEq for Status
Auto Trait Implementations§
impl Freeze for Status
impl RefUnwindSafe for Status
impl Send for Status
impl Sync for Status
impl Unpin for Status
impl UnwindSafe for Status
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.