[][src]Struct actix_mqtt::client::ConnectAckResult

pub struct ConnectAckResult<Io, St> { /* fields omitted */ }

Trait Implementations

impl<Io, St> Stream for ConnectAckResult<Io, St> where
    Io: AsyncRead + AsyncWrite
[src]

type Item = Packet

The type of item this stream will yield on success.

type Error = ParseError

The type of error this stream may generate.

impl<Io, St> Sink for ConnectAckResult<Io, St> where
    Io: AsyncRead + AsyncWrite
[src]

type SinkItem = Packet

The type of value that the sink accepts.

type SinkError = ParseError

The type of value produced by the sink when an error occurs.

Auto Trait Implementations

impl<Io, St> !Send for ConnectAckResult<Io, St>

impl<Io, St> !Sync for ConnectAckResult<Io, St>

impl<Io, St> Unpin for ConnectAckResult<Io, St> where
    Io: Unpin,
    St: Unpin

impl<Io, St> !RefUnwindSafe for ConnectAckResult<Io, St>

impl<Io, St> !UnwindSafe for ConnectAckResult<Io, St>

Blanket Implementations

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

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

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T> IntoStream for T where
    T: Stream
[src]

type Item = <T as Stream>::Item

type Error = <T as Stream>::Error

type Stream = T

impl<T> Erased for T