pub trait Subscribe {
type Options;
type Streamable;
type Error;
// Required method
fn subscribe(
&mut self,
options: Self::Options,
) -> Result<Self::Streamable, Self::Error>;
}
Expand description
A boxed future stream to shorten method definitions
//pub type FutureStream