[][src]Struct goggles::par_seq::Par

pub struct Par<H, T> { /* fields omitted */ }

Implementations

impl<H, T> Par<H, T>[src]

pub fn new(head: H, tail: T) -> Par<H, T>[src]

pub fn with<S>(self, sys: S) -> Par<Par<H, T>, S>[src]

Trait Implementations

impl<H, T, S: ?Sized, R, P, A: ?Sized, E> System for Par<H, T> where
    H: System<Source = S, Resources = R, Pool = P, Args = A, Error = E> + Send,
    T: System<Source = S, Resources = R, Pool = P, Args = A, Error = E> + Send,
    S: Sync,
    R: Resources + Send,
    P: Pool + Sync,
    A: Sync,
    E: Error + Send
[src]

type Source = S

type Resources = R

type Pool = P

type Args = A

type Error = E

Auto Trait Implementations

impl<H, T> RefUnwindSafe for Par<H, T> where
    H: RefUnwindSafe,
    T: RefUnwindSafe

impl<H, T> Send for Par<H, T> where
    H: Send,
    T: Send

impl<H, T> Sync for Par<H, T> where
    H: Sync,
    T: Sync

impl<H, T> Unpin for Par<H, T> where
    H: Unpin,
    T: Unpin

impl<H, T> UnwindSafe for Par<H, T> where
    H: UnwindSafe,
    T: UnwindSafe

Blanket Implementations

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

impl<T> Any for T where
    T: Any
[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> Pointable for T

type Init = T

The type for initializers.

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.