[][src]Struct susyp2p::simple::SimpleProtocol

pub struct SimpleProtocol<F> { /* fields omitted */ }

Implementation of ConnectionUpgrade. Convenient to use with small protocols.

Methods

impl<F> SimpleProtocol<F>[src]

pub fn new<N>(info: N, upgrade: F) -> SimpleProtocol<F> where
    N: Into<Bytes>, 
[src]

Builds a SimpleProtocol.

Trait Implementations

impl<F> Clone for SimpleProtocol<F>[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl<F: Debug> Debug for SimpleProtocol<F>[src]

impl<C, F, O> InboundUpgrade<C> for SimpleProtocol<F> where
    C: AsyncRead + AsyncWrite,
    F: Fn(Negotiated<C>) -> O,
    O: IntoFuture<Error = IoError>, 
[src]

type Output = O::Item

Output after the upgrade has been successfully negotiated and the handshake performed.

type Error = IoError

Possible error during the handshake.

type Future = FromErr<O::Future, IoError>

Future that performs the handshake with the remote.

impl<C, F, O> OutboundUpgrade<C> for SimpleProtocol<F> where
    C: AsyncRead + AsyncWrite,
    F: Fn(Negotiated<C>) -> O,
    O: IntoFuture<Error = IoError>, 
[src]

type Output = O::Item

Output after the upgrade has been successfully negotiated and the handshake performed.

type Error = IoError

Possible error during the handshake.

type Future = FromErr<O::Future, IoError>

Future that performs the handshake with the remote.

impl<F> UpgradeInfo for SimpleProtocol<F>[src]

type Info = Bytes

Opaque type representing a negotiable protocol.

type InfoIter = Once<Self::Info>

Iterator returned by protocol_info.

Auto Trait Implementations

impl<F> Send for SimpleProtocol<F> where
    F: Send + Sync

impl<F> Sync for SimpleProtocol<F> where
    F: Send + Sync

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto 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<T> Borrow for T where
    T: ?Sized
[src]

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

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

impl<T> Same for T

type Output = T

Should always be Self

impl<C, U> InboundUpgradeExt for U where
    U: InboundUpgrade<C>, 
[src]

fn map_inbound<F, T>(self, f: F) -> MapInboundUpgrade<Self, F> where
    F: FnOnce(Self::Output) -> T, 
[src]

Returns a new object that wraps around Self and applies a closure to the Output.

fn map_inbound_err<F, T>(self, f: F) -> MapInboundUpgradeErr<Self, F> where
    F: FnOnce(Self::Error) -> T, 
[src]

Returns a new object that wraps around Self and applies a closure to the Error.

impl<C, U> OutboundUpgradeExt for U where
    U: OutboundUpgrade<C>, 
[src]

fn map_outbound<F, T>(self, f: F) -> MapOutboundUpgrade<Self, F> where
    F: FnOnce(Self::Output) -> T, 
[src]

Returns a new object that wraps around Self and applies a closure to the Output.

fn map_outbound_err<F, T>(self, f: F) -> MapOutboundUpgradeErr<Self, F> where
    F: FnOnce(Self::Error) -> T, 
[src]

Returns a new object that wraps around Self and applies a closure to the Error.

impl<T> Erased for T

impl<T> Erased for T

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.