Struct median::stack::ListNode[][src]

pub struct ListNode<T> { /* fields omitted */ }

Implementation detail. (Once we have value generics we will hopefully be able to un-leak it.)

Trait Implementations

impl<T: Clone> Clone for ListNode<T>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<T: PartialEq> PartialEq for ListNode<T>
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<T: Eq> Eq for ListNode<T>
[src]

impl<T> Debug for ListNode<T> where
    T: Debug
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl<T> Send for ListNode<T> where
    T: Send

impl<T> Sync for ListNode<T> where
    T: Sync