Trait ethane::transport::Subscribe[][src]

pub trait Subscribe {
    fn read_next(&mut self) -> Result<String, TransportError>;
fn fork(&self) -> Result<Self, TransportError>
    where
        Self: Sized
; }

Trait for transports which offer subscriptions

Required methods

fn read_next(&mut self) -> Result<String, TransportError>[src]

fn fork(&self) -> Result<Self, TransportError> where
    Self: Sized
[src]

Loading content...

Implementors

impl Subscribe for Uds[src]

impl Subscribe for WebSocket[src]

Loading content...