TaskExt

Trait TaskExt 

Source
pub trait TaskExt: Sized {
    // Required methods
    fn seed(self, seed: u64) -> Task<Self> ;
    fn inhert_seed(self) -> Task<Self> ;
}

Required Methods§

Source

fn seed(self, seed: u64) -> Task<Self>

Source

fn inhert_seed(self) -> Task<Self>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<T> TaskExt for T
where T: Future,