Trait monoio_codec::NextWithCodec
source · pub trait NextWithCodec<T> {
type Item;
// Required method
fn next_with<'a>(
&'a mut self,
codec: &'a mut T
) -> impl Future<Output = Option<Self::Item>>;
}Required Associated Types§
Required Methods§
fn next_with<'a>( &'a mut self, codec: &'a mut T ) -> impl Future<Output = Option<Self::Item>>
Object Safety§
This trait is not object safe.