Struct ntex_amqp_codec::AmqpCodec[][src]

pub struct AmqpCodec<T: Decode + Encode> { /* fields omitted */ }

Implementations

impl<T: Decode + Encode> AmqpCodec<T>[src]

pub fn new() -> AmqpCodec<T>[src]

pub fn max_size(self, size: usize) -> Self[src]

Set max inbound frame size.

If max size is set to 0, size is unlimited. By default max size is set to 0

pub fn set_max_size(&mut self, size: usize)[src]

Set max inbound frame size.

If max size is set to 0, size is unlimited. By default max size is set to 0

Trait Implementations

impl<T: Debug + Decode + Encode> Debug for AmqpCodec<T>[src]

impl<T: Decode + Encode> Decoder for AmqpCodec<T>[src]

type Item = T

The type of decoded frames.

type Error = AmqpCodecError

The type of unrecoverable frame decoding errors. Read more

impl<T: Decode + Encode> Default for AmqpCodec<T>[src]

impl<T: Decode + Encode + Debug> Encoder for AmqpCodec<T>[src]

type Item = T

The type of items consumed by the Encoder

type Error = AmqpCodecError

The type of encoding errors.

Auto Trait Implementations

impl<T> !RefUnwindSafe for AmqpCodec<T>

impl<T> Send for AmqpCodec<T> where
    T: Send

impl<T> !Sync for AmqpCodec<T>

impl<T> Unpin for AmqpCodec<T> where
    T: Unpin

impl<T> UnwindSafe for AmqpCodec<T> where
    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, 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.