pub enum PlanStatus {
Draft,
Ready,
Running,
Blocked,
Succeeded,
Failed,
Cancelled,
Superseded,
}Variants§
Implementations§
Source§impl PlanStatus
impl PlanStatus
Trait Implementations§
Source§impl Clone for PlanStatus
impl Clone for PlanStatus
Source§fn clone(&self) -> PlanStatus
fn clone(&self) -> PlanStatus
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 moreSource§impl Debug for PlanStatus
impl Debug for PlanStatus
Source§impl Display for PlanStatus
impl Display for PlanStatus
Source§impl FromStr for PlanStatus
impl FromStr for PlanStatus
Source§type Err = PlanningError
type Err = PlanningError
The associated error which can be returned from parsing.
Source§fn from_str(value: &str) -> Result<PlanStatus, <PlanStatus as FromStr>::Err>
fn from_str(value: &str) -> Result<PlanStatus, <PlanStatus as FromStr>::Err>
Parses a string
s to return a value of this type. Read moreSource§impl Hash for PlanStatus
impl Hash for PlanStatus
Source§impl Ord for PlanStatus
impl Ord for PlanStatus
Source§fn cmp(&self, other: &PlanStatus) -> Ordering
fn cmp(&self, other: &PlanStatus) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for PlanStatus
impl PartialEq for PlanStatus
Source§fn eq(&self, other: &PlanStatus) -> bool
fn eq(&self, other: &PlanStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for PlanStatus
impl PartialOrd for PlanStatus
impl Copy for PlanStatus
impl Eq for PlanStatus
impl StructuralPartialEq for PlanStatus
Auto Trait Implementations§
impl Freeze for PlanStatus
impl RefUnwindSafe for PlanStatus
impl Send for PlanStatus
impl Sync for PlanStatus
impl Unpin for PlanStatus
impl UnsafeUnpin for PlanStatus
impl UnwindSafe for PlanStatus
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