[][src]Type Definition pasts::Task

type Task<'a, T> = Pin<&'a mut (dyn Future<Output = T> + Unpin)>;

A pinned future trait object.