Enum PlanDependencyKind
pub enum PlanDependencyKind {
Sequential,
Parallel,
Conditional,
Blocking,
Optional,
}Variants§
Implementations§
§impl PlanDependencyKind
impl PlanDependencyKind
pub const ALL: &'static [PlanDependencyKind]
pub const fn as_str(self) -> &'static str
Trait Implementations§
§impl Clone for PlanDependencyKind
impl Clone for PlanDependencyKind
§fn clone(&self) -> PlanDependencyKind
fn clone(&self) -> PlanDependencyKind
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 PlanDependencyKind
impl Debug for PlanDependencyKind
§impl Display for PlanDependencyKind
impl Display for PlanDependencyKind
§impl FromStr for PlanDependencyKind
impl FromStr for PlanDependencyKind
§type Err = PlanningError
type Err = PlanningError
The associated error which can be returned from parsing.
§fn from_str(
value: &str,
) -> Result<PlanDependencyKind, <PlanDependencyKind as FromStr>::Err>
fn from_str( value: &str, ) -> Result<PlanDependencyKind, <PlanDependencyKind as FromStr>::Err>
Parses a string
s to return a value of this type. Read more§impl Hash for PlanDependencyKind
impl Hash for PlanDependencyKind
§impl Ord for PlanDependencyKind
impl Ord for PlanDependencyKind
§fn cmp(&self, other: &PlanDependencyKind) -> Ordering
fn cmp(&self, other: &PlanDependencyKind) -> Ordering
1.21.0 · 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
§impl PartialEq for PlanDependencyKind
impl PartialEq for PlanDependencyKind
§impl PartialOrd for PlanDependencyKind
impl PartialOrd for PlanDependencyKind
impl Copy for PlanDependencyKind
impl Eq for PlanDependencyKind
impl StructuralPartialEq for PlanDependencyKind
Auto Trait Implementations§
impl Freeze for PlanDependencyKind
impl RefUnwindSafe for PlanDependencyKind
impl Send for PlanDependencyKind
impl Sync for PlanDependencyKind
impl Unpin for PlanDependencyKind
impl UnsafeUnpin for PlanDependencyKind
impl UnwindSafe for PlanDependencyKind
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