Trait rump::transport::WampSender [] [src]

pub trait WampSender: WampConnector {
    fn send<T: Encodable>(&self, message: &T) -> WampResult<()>;
}

A WampSender defines methods for the custom socket type to send over the endpoint

Required Methods

fn send<T: Encodable>(&self, message: &T) -> WampResult<()>

Implementors