pub trait Subscriber {
// Required method
fn next(&mut self) -> Result<Option<FieldOutput>, Error>;
}Expand description
A trait for subscribing to a stream of field outputs.
pub trait Subscriber {
// Required method
fn next(&mut self) -> Result<Option<FieldOutput>, Error>;
}A trait for subscribing to a stream of field outputs.