Enum acme_core::ActionStatus
source · [−]pub enum ActionStatus<T = String> {
Acting(T),
Completed(T),
Exited(T),
}Variants
Acting(T)
Completed(T)
Exited(T)
Trait Implementations
sourceimpl<T: Clone> Clone for ActionStatus<T>
impl<T: Clone> Clone for ActionStatus<T>
sourcefn clone(&self) -> ActionStatus<T>
fn clone(&self) -> ActionStatus<T>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl<T: Debug> Debug for ActionStatus<T>
impl<T: Debug> Debug for ActionStatus<T>
sourceimpl<T: Hash> Hash for ActionStatus<T>
impl<T: Hash> Hash for ActionStatus<T>
sourceimpl<T: PartialEq> PartialEq<ActionStatus<T>> for ActionStatus<T>
impl<T: PartialEq> PartialEq<ActionStatus<T>> for ActionStatus<T>
sourcefn eq(&self, other: &ActionStatus<T>) -> bool
fn eq(&self, other: &ActionStatus<T>) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &ActionStatus<T>) -> bool
fn ne(&self, other: &ActionStatus<T>) -> bool
This method tests for !=.
impl<T> StructuralPartialEq for ActionStatus<T>
Auto Trait Implementations
impl<T> RefUnwindSafe for ActionStatus<T> where
T: RefUnwindSafe,
impl<T> Send for ActionStatus<T> where
T: Send,
impl<T> Sync for ActionStatus<T> where
T: Sync,
impl<T> Unpin for ActionStatus<T> where
T: Unpin,
impl<T> UnwindSafe for ActionStatus<T> where
T: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more