pub enum EffectEdge {
Fwd(Edge),
Bwd(Edge),
None,
}
Expand description
Edge associated with an Effect
.
Variants§
Fwd(Edge)
Edge effect follows the edge “forward” to its target
Bwd(Edge)
Edge effect follows the edge “backward” to its source
None
No edge associated with Trace effect (e.g., Debug
)
Trait Implementations§
Source§impl Clone for EffectEdge
impl Clone for EffectEdge
Source§fn clone(&self) -> EffectEdge
fn clone(&self) -> EffectEdge
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 moreAuto Trait Implementations§
impl Freeze for EffectEdge
impl RefUnwindSafe for EffectEdge
impl !Send for EffectEdge
impl !Sync for EffectEdge
impl Unpin for EffectEdge
impl UnwindSafe for EffectEdge
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