[][src]Trait lnpbp::lnp::session::Input

pub trait Input {
    fn recv_raw_message(&mut self) -> Result<Vec<u8>, Error>;

    fn recv_routed_message(&mut self) -> Result<RoutedFrame, Error> { ... }
}

Required methods

fn recv_raw_message(&mut self) -> Result<Vec<u8>, Error>

Loading content...

Provided methods

Loading content...

Implementors

impl<T, C> Input for RawInput<T, C> where
    T: Decrypt,
    C: RecvFrame,
    Error: From<T::Error>, 
[src]

Loading content...