Enum hazardflow_designs::std::hazard::Dep
source · pub enum Dep {
Helpful = 0,
Demanding = 1,
}
Expand description
Dependency type of a hazard interface.
Variants§
Helpful = 0
The payload (Fwd
) does not depend on the resolver (Bwd
).
Demanding = 1
The payload (Fwd
) depends on the resolver (Bwd
), and they satisfy the condition that if the payload is
Some
, Hazard::ready(p, r)
is true.
It is a bug to make the payload depend on the resolver but break the condition.
Trait Implementations§
source§impl Ord for Dep
impl Ord for Dep
source§impl PartialOrd for Dep
impl PartialOrd for Dep
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl ConstParamTy for Dep
impl Copy for Dep
impl Eq for Dep
impl StructuralEq for Dep
impl StructuralPartialEq for Dep
Auto Trait Implementations§
impl RefUnwindSafe for Dep
impl Send for Dep
impl Sync for Dep
impl Unpin for Dep
impl UnwindSafe for Dep
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