[][src]Struct dep_graph::Wrapper

pub struct Wrapper<I> where
    I: Clone + Debug + Eq + Hash + PartialEq + Send + Sync + 'static, 
{ /* fields omitted */ }

Wrapper for an item

This is used to pass items through iterators

Implementations

impl<I> Wrapper<I> where
    I: Clone + Debug + Eq + Hash + PartialEq + Send + Sync + 'static, 
[src]

pub fn new(inner: I, counter: Arc<AtomicUsize>, item_done_tx: Sender<I>) -> Self[src]

Trait Implementations

impl<I: Clone> Clone for Wrapper<I> where
    I: Clone + Debug + Eq + Hash + PartialEq + Send + Sync + 'static, 
[src]

impl<I> Deref for Wrapper<I> where
    I: Clone + Debug + Eq + Hash + PartialEq + Send + Sync + 'static, 
[src]

type Target = I

The resulting type after dereferencing.

impl<I> DerefMut for Wrapper<I> where
    I: Clone + Debug + Eq + Hash + PartialEq + Send + Sync + 'static, 
[src]

impl<I> Drop for Wrapper<I> where
    I: Clone + Debug + Eq + Hash + PartialEq + Send + Sync + 'static, 
[src]

impl<I> Eq for Wrapper<I> where
    I: Clone + Debug + Eq + Hash + PartialEq + Send + Sync + 'static, 
[src]

impl<I> Hash for Wrapper<I> where
    I: Clone + Debug + Eq + Hash + PartialEq + Send + Sync + 'static, 
[src]

impl<I> PartialEq<Wrapper<I>> for Wrapper<I> where
    I: Clone + Debug + Eq + Hash + PartialEq + Send + Sync + 'static, 
[src]

Auto Trait Implementations

impl<I> RefUnwindSafe for Wrapper<I> where
    I: RefUnwindSafe

impl<I> Send for Wrapper<I>

impl<I> Sync for Wrapper<I>

impl<I> Unpin for Wrapper<I> where
    I: Unpin

impl<I> UnwindSafe for Wrapper<I> where
    I: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.