pub struct StdioBroker { /* private fields */ }Expand description
Standard input and output as one stream: consume lines from stdin, publish lines to
stdout, in the client’s [timestamp | stream_key | seq] payload line format.
§Examples
use ruststream_sea_file::StdioBroker;
let broker = StdioBroker::new();Implementations§
Source§impl StdioBroker
impl StdioBroker
Trait Implementations§
Source§impl Broker for StdioBroker
impl Broker for StdioBroker
Source§type Error = SeaFileError
type Error = SeaFileError
The error type returned by broker-level operations.
Source§type Connected = ConnectedStdioBroker
type Connected = ConnectedStdioBroker
The connected form of this broker: the typed witness that
connect
succeeded.Source§impl Clone for StdioBroker
impl Clone for StdioBroker
Source§fn clone(&self) -> StdioBroker
fn clone(&self) -> StdioBroker
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for StdioBroker
impl Debug for StdioBroker
Source§impl Default for StdioBroker
impl Default for StdioBroker
Source§fn default() -> StdioBroker
fn default() -> StdioBroker
Returns the “default value” for a type. Read more
Source§impl DescribeServer for StdioBroker
impl DescribeServer for StdioBroker
Source§fn describe_server(&self) -> ServerSpec
fn describe_server(&self) -> ServerSpec
Returns the server coordinates for this broker.
Auto Trait Implementations§
impl !RefUnwindSafe for StdioBroker
impl !UnwindSafe for StdioBroker
impl Freeze for StdioBroker
impl Send for StdioBroker
impl Sync for StdioBroker
impl Unpin for StdioBroker
impl UnsafeUnpin for StdioBroker
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more