Enum trees::linked::singly::walk::Visit [−][src]
Distinguish between visiting a leaf node and (begin/end of) visiting a branched node.
Variants
Begin(&'a Node<T>)
End(&'a Node<T>)
Leaf(&'a Node<T>)
Implementations
impl<'a, T: 'a> Visit<'a, T>
[src]
pub fn node(&self) -> &Node<T>
[src]
Returns the node under visit, regardless of whether it is a leaf node or (begin/end of) visiting a branched node.
Trait Implementations
impl<'a, T: Clone + 'a> Clone for Visit<'a, T>
[src]
impl<'a, T: Copy + 'a> Copy for Visit<'a, T>
[src]
impl<'a, T: Debug + 'a> Debug for Visit<'a, T>
[src]
impl<'a, T: Eq + 'a> Eq for Visit<'a, T>
[src]
impl<'a, T: PartialEq + 'a> PartialEq<Visit<'a, T>> for Visit<'a, T>
[src]
impl<'a, T: 'a> StructuralEq for Visit<'a, T>
[src]
impl<'a, T: 'a> StructuralPartialEq for Visit<'a, T>
[src]
Auto Trait Implementations
impl<'a, T> RefUnwindSafe for Visit<'a, T> where
T: RefUnwindSafe,
T: RefUnwindSafe,
impl<'a, T> !Send for Visit<'a, T>
impl<'a, T> !Sync for Visit<'a, T>
impl<'a, T> Unpin for Visit<'a, T>
impl<'a, T> UnwindSafe for Visit<'a, T> where
T: RefUnwindSafe,
T: RefUnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,