pub enum ActionUpdate<E> {
Running,
Success,
Failed(E),
}Expand description
One provider action observation.
Variants§
Running
The action remains in progress.
Success
The action completed successfully.
Failed(E)
The action completed with a provider failure.
Trait Implementations§
Source§impl<E: Clone> Clone for ActionUpdate<E>
impl<E: Clone> Clone for ActionUpdate<E>
Source§fn clone(&self) -> ActionUpdate<E>
fn clone(&self) -> ActionUpdate<E>
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 moreimpl<E: Copy> Copy for ActionUpdate<E>
Source§impl<E: Debug> Debug for ActionUpdate<E>
impl<E: Debug> Debug for ActionUpdate<E>
impl<E: Eq> Eq for ActionUpdate<E>
Source§impl<E: PartialEq> PartialEq for ActionUpdate<E>
impl<E: PartialEq> PartialEq for ActionUpdate<E>
impl<E: PartialEq> StructuralPartialEq for ActionUpdate<E>
Auto Trait Implementations§
impl<E> Freeze for ActionUpdate<E>where
E: Freeze,
impl<E> RefUnwindSafe for ActionUpdate<E>where
E: RefUnwindSafe,
impl<E> Send for ActionUpdate<E>where
E: Send,
impl<E> Sync for ActionUpdate<E>where
E: Sync,
impl<E> Unpin for ActionUpdate<E>where
E: Unpin,
impl<E> UnsafeUnpin for ActionUpdate<E>where
E: UnsafeUnpin,
impl<E> UnwindSafe for ActionUpdate<E>where
E: UnwindSafe,
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