pub enum PlanDependencyKind {
Sequential,
Parallel,
Conditional,
Blocking,
Optional,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for PlanDependencyKind
impl Clone for PlanDependencyKind
Source§fn clone(&self) -> PlanDependencyKind
fn clone(&self) -> PlanDependencyKind
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 PlanDependencyKind
impl Debug for PlanDependencyKind
Source§impl Display for PlanDependencyKind
impl Display for PlanDependencyKind
Source§impl FromStr for PlanDependencyKind
impl FromStr for PlanDependencyKind
Source§impl Hash for PlanDependencyKind
impl Hash for PlanDependencyKind
Source§impl Ord for PlanDependencyKind
impl Ord for PlanDependencyKind
Source§fn cmp(&self, other: &PlanDependencyKind) -> Ordering
fn cmp(&self, other: &PlanDependencyKind) -> 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 PlanDependencyKind
impl PartialEq for PlanDependencyKind
Source§fn eq(&self, other: &PlanDependencyKind) -> bool
fn eq(&self, other: &PlanDependencyKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§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