pub enum GoalEndStatus {
Succeeded,
Aborted,
Canceled,
}Expand description
What was the cause of action ending
Variants§
Trait Implementations§
Source§impl Clone for GoalEndStatus
impl Clone for GoalEndStatus
Source§fn clone(&self) -> GoalEndStatus
fn clone(&self) -> GoalEndStatus
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 Copy for GoalEndStatus
Source§impl Debug for GoalEndStatus
impl Debug for GoalEndStatus
impl Eq for GoalEndStatus
Source§impl PartialEq for GoalEndStatus
impl PartialEq for GoalEndStatus
Source§fn eq(&self, other: &GoalEndStatus) -> bool
fn eq(&self, other: &GoalEndStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GoalEndStatus
Auto Trait Implementations§
impl Freeze for GoalEndStatus
impl RefUnwindSafe for GoalEndStatus
impl Send for GoalEndStatus
impl Sync for GoalEndStatus
impl Unpin for GoalEndStatus
impl UnsafeUnpin for GoalEndStatus
impl UnwindSafe for GoalEndStatus
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