logo
pub trait Fuse: Sized {
    fn fuse(self) -> Option<Self>;
}
Expand description

Trait for “fusing” a Future (conversion to a Notifier).

Required Methods

Fuse the Future

Implementors