pub enum DfgEdgeKind {
Filled,
Empty,
}
Expand description
The kind of a data-flow edge
Variants§
Filled
This kind represents data-flow edges which actually carry data
E.g. the destination reads a resource, written by the source.
Empty
This kind incurrs no actual data-flow
E.g. the destination overwrites a resource, written by the source.
Trait Implementations§
Source§impl Clone for DfgEdgeKind
impl Clone for DfgEdgeKind
Source§fn clone(&self) -> DfgEdgeKind
fn clone(&self) -> DfgEdgeKind
Returns a copy 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 moreSource§impl Debug for DfgEdgeKind
impl Debug for DfgEdgeKind
Source§impl Hash for DfgEdgeKind
impl Hash for DfgEdgeKind
Source§impl Ord for DfgEdgeKind
impl Ord for DfgEdgeKind
Source§fn cmp(&self, other: &DfgEdgeKind) -> Ordering
fn cmp(&self, other: &DfgEdgeKind) -> 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
Source§impl PartialEq for DfgEdgeKind
impl PartialEq for DfgEdgeKind
Source§impl PartialOrd for DfgEdgeKind
impl PartialOrd for DfgEdgeKind
impl Eq for DfgEdgeKind
impl StructuralPartialEq for DfgEdgeKind
Auto Trait Implementations§
impl Freeze for DfgEdgeKind
impl RefUnwindSafe for DfgEdgeKind
impl Send for DfgEdgeKind
impl Sync for DfgEdgeKind
impl Unpin for DfgEdgeKind
impl UnwindSafe for DfgEdgeKind
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more