Struct shred::Seq [] [src]

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

Runs two tasks sequentially. These two tasks are called head and tail in the following documentation.

Methods

impl<H> Seq<H, Nil>
[src]

[src]

Creates a new Seq struct, with the tail being a no-op.

[src]

Adds sys as the second job and returns a new Seq struct with the previous struct as head and a no-op tail.

Trait Implementations

Auto Trait Implementations

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

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