pub enum TraceDirection {
Forward,
Backward,
}Expand description
Direction of the call graph trace
Variants§
Forward
Trace forward: which functions does this function call?
Backward
Trace backward: which functions call this function?
Trait Implementations§
Source§impl Clone for TraceDirection
impl Clone for TraceDirection
Source§fn clone(&self) -> TraceDirection
fn clone(&self) -> TraceDirection
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 moreSource§impl Debug for TraceDirection
impl Debug for TraceDirection
Source§impl Hash for TraceDirection
impl Hash for TraceDirection
Source§impl PartialEq for TraceDirection
impl PartialEq for TraceDirection
impl Eq for TraceDirection
impl StructuralPartialEq for TraceDirection
Auto Trait Implementations§
impl Freeze for TraceDirection
impl RefUnwindSafe for TraceDirection
impl Send for TraceDirection
impl Sync for TraceDirection
impl Unpin for TraceDirection
impl UnwindSafe for TraceDirection
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