pub struct Dfs<I, M> {
pub trace: Trace<I>,
/* private fields */
}Expand description
An Evaluator that visits modules in DFS order.
Fields§
§trace: Trace<I>Module trace.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<I, M> Freeze for Dfs<I, M>where
M: Freeze,
impl<I, M> RefUnwindSafe for Dfs<I, M>where
M: RefUnwindSafe,
I: RefUnwindSafe,
impl<I, M> Send for Dfs<I, M>
impl<I, M> Sync for Dfs<I, M>
impl<I, M> Unpin for Dfs<I, M>
impl<I, M> UnsafeUnpin for Dfs<I, M>where
M: UnsafeUnpin,
impl<I, M> UnwindSafe for Dfs<I, M>
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