pub struct DepthResult {
pub max_depth: usize,
pub nodes: Vec<NodeDepth>,
}Fields§
§max_depth: usize§nodes: Vec<NodeDepth>Trait Implementations§
Source§impl Clone for DepthResult
impl Clone for DepthResult
Source§fn clone(&self) -> DepthResult
fn clone(&self) -> DepthResult
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 DepthResult
impl Debug for DepthResult
Auto Trait Implementations§
impl Freeze for DepthResult
impl RefUnwindSafe for DepthResult
impl Send for DepthResult
impl Sync for DepthResult
impl Unpin for DepthResult
impl UnsafeUnpin for DepthResult
impl UnwindSafe for DepthResult
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