[][src]Struct lnpbp::lnp::Session

pub struct Session<T, S> where
    T: Transcode,
    S: Bidirect
{ /* fields omitted */ }

Implementations

impl<T, S> Session<T, S> where
    T: Transcode,
    S: Bidirect
[src]

pub fn new(_node_locator: NodeLocator) -> Result<Self, Error>[src]

impl Session<NoEncryption, Connection>[src]

pub fn new_zmq_unencrypted(
    zmq_type: ZmqType,
    context: &mut Context,
    remote: SocketLocator,
    local: Option<SocketLocator>
) -> Result<Self, Error>
[src]

impl<T, S> Session<T, S> where
    T: Transcode,
    S: Bidirect,
    Error: From<T::Error>, 
[src]

pub fn recv_raw_message(&mut self) -> Result<Vec<u8>, Error>[src]

pub fn send_raw_message(
    &mut self,
    raw: impl Borrow<[u8]>
) -> Result<usize, Error>
[src]

Trait Implementations

impl<T, S> Bipolar for Session<T, S> where
    T: Transcode,
    T::Left: Decrypt,
    T::Right: Encrypt,
    S: Bidirect,
    S::Left: Input,
    S::Right: Output
[src]

type Left = Inbound<T::Left, S::Left>

First separable type (like reader)

type Right = Outbound<T::Right, S::Right>

Second separable type (like writer)

Auto Trait Implementations

impl<T, S> RefUnwindSafe for Session<T, S> where
    S: RefUnwindSafe,
    T: RefUnwindSafe

impl<T, S> Send for Session<T, S> where
    S: Send,
    T: Send

impl<T, S> Sync for Session<T, S> where
    S: Sync,
    T: Sync

impl<T, S> Unpin for Session<T, S> where
    S: Unpin,
    T: Unpin

impl<T, S> UnwindSafe for Session<T, S> where
    S: UnwindSafe,
    T: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,