[][src]Struct amadeus::par_sink::SortFolder

pub struct SortFolder<F> { /* fields omitted */ }

Implementations

impl<F> SortFolder<F>[src]

pub fn new(f: F, n: usize) -> SortFolder<F>[src]

Constructs a new SortFolder.

Trait Implementations

impl<F> Clone for SortFolder<F> where
    F: Clone
[src]

impl<'de, F> Deserialize<'de> for SortFolder<F> where
    F: Deserialize<'de>, 
[src]

impl<Item, F> FolderSync<Item> for SortFolder<F> where
    F: Fn<(&Item, &Item), Output = Ordering> + Clone
[src]

type State = Sort<Item, F>

type Done = <SortFolder<F> as FolderSync<Item>>::State

impl<F> Serialize for SortFolder<F> where
    F: Serialize
[src]

Auto Trait Implementations

impl<F> RefUnwindSafe for SortFolder<F> where
    F: RefUnwindSafe

impl<F> Send for SortFolder<F> where
    F: Send

impl<F> Sync for SortFolder<F> where
    F: Sync

impl<F> Unpin for SortFolder<F> where
    F: Unpin

impl<F> UnwindSafe for SortFolder<F> where
    F: UnwindSafe

Blanket Implementations

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

impl<T> Any for T where
    T: Any + Serialize + Deserialize
[src]

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

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

impl<T> Deserialize for T where
    T: DeserializeOwned
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<A, B> Downcast<A> for B where
    A: DowncastFrom<B>, 
[src]

impl<C, Item, B> FolderSync<Item> for C where
    C: CombinerSync<Done = B>,
    Item: Into<Option<B>>, 
[src]

type State = Option<B>

type Done = <C as FolderSync<Item>>::State

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

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

impl<T> ProcessSend for T where
    T: Send + Serialize + for<'de> Deserialize<'de> + ?Sized
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Sealed<T> for T where
    T: ?Sized

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

impl<T> Serialize for T where
    T: Serialize + ?Sized
[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.

impl<T> Type for T[src]

type Meta = Concrete

Type of metadata for type.

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

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,