[][src]Struct amq_protocol::frame::AMQPRawFrame

pub struct AMQPRawFrame<'a> {
    pub frame_type: AMQPFrameType,
    pub channel_id: ShortUInt,
    pub size: LongUInt,
    pub payload: &'a [u8],
}

Raw AMQP Frame

Fields

frame_type: AMQPFrameType

The type of frame

channel_id: ShortUInt

The id this frame was received on

size: LongUInt

The size of the frame

payload: &'a [u8]

The paylaod of the frame

Trait Implementations

impl<'a> Clone for AMQPRawFrame<'a>[src]

impl<'a> Copy for AMQPRawFrame<'a>[src]

impl<'a> Debug for AMQPRawFrame<'a>[src]

impl<'a> Eq for AMQPRawFrame<'a>[src]

impl<'a> PartialEq<AMQPRawFrame<'a>> for AMQPRawFrame<'a>[src]

impl<'a> StructuralEq for AMQPRawFrame<'a>[src]

impl<'a> StructuralPartialEq for AMQPRawFrame<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for AMQPRawFrame<'a>

impl<'a> Send for AMQPRawFrame<'a>

impl<'a> Sync for AMQPRawFrame<'a>

impl<'a> Unpin for AMQPRawFrame<'a>

impl<'a> UnwindSafe for AMQPRawFrame<'a>

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.