[][src]Struct lapin_async::frames::Frames

pub struct Frames { /* fields omitted */ }

Methods

impl Frames[src]

pub fn push(
    &self,
    channel_id: u16,
    priority: Priority,
    frame: AMQPFrame,
    expected_reply: Option<Reply>
) -> Wait<()>
[src]

pub fn retry(&self, send_id: SendId, frame: AMQPFrame)[src]

pub fn pop(&self) -> Option<(SendId, AMQPFrame)>[src]

pub fn is_empty(&self) -> bool[src]

pub fn next_expected_reply(&self, channel_id: u16) -> Option<Reply>[src]

pub fn clear_expected_replies(&self, channel_id: u16)[src]

pub fn mark_sent(&self, send_id: SendId)[src]

Trait Implementations

impl Clone for Frames[src]

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

Performs copy-assignment from source. Read more

impl Default for Frames[src]

impl Debug for Frames[src]

Auto Trait Implementations

impl Send for Frames

impl Sync for Frames

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

impl<T> From<T> for 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]