Trait SelectNextAnyExt

Source
pub trait SelectNextAnyExt {
    // Required method
    fn select_next_any(&mut self) -> SelectNextAny<'_, Self> 
       where Self: Unpin + FusedStream;
}

Required Methods§

Source

fn select_next_any(&mut self) -> SelectNextAny<'_, Self>
where Self: Unpin + FusedStream,

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> SelectNextAnyExt for T
where T: Unpin + FusedStream,