Enum PlanStatus
pub enum PlanStatus {
Draft,
Ready,
Running,
Blocked,
Succeeded,
Failed,
Cancelled,
Superseded,
}Variants§
Implementations§
§impl PlanStatus
impl PlanStatus
pub const ALL: &'static [PlanStatus]
pub const fn as_str(self) -> &'static str
Trait Implementations§
§impl Clone for PlanStatus
impl Clone for PlanStatus
§fn clone(&self) -> PlanStatus
fn clone(&self) -> PlanStatus
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read more§impl Debug for PlanStatus
impl Debug for PlanStatus
§impl Display for PlanStatus
impl Display for PlanStatus
§impl FromStr for PlanStatus
impl FromStr for PlanStatus
§type Err = PlanningError
type Err = PlanningError
The associated error which can be returned from parsing.
§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 more§impl Hash for PlanStatus
impl Hash for PlanStatus
§impl Ord for PlanStatus
impl Ord for PlanStatus
§impl PartialEq for PlanStatus
impl PartialEq for PlanStatus
§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