[][src]Struct rsmq_async::Rsmq

pub struct Rsmq { /* fields omitted */ }

Methods

impl Rsmq[src]

pub async fn new(options: RsmqOptions) -> Result<Rsmq, RsmqError>[src]

pub fn new_with_connection(options: RsmqOptions, connection: Connection) -> Rsmq[src]

pub async fn change_message_visibility<'_, '_, '_>(
    &'_ mut self,
    qname: &'_ str,
    message_id: &'_ str,
    hidden_duration: u64
) -> Result<(), RsmqError>
[src]

pub async fn create_queue<'_, '_>(
    &'_ mut self,
    qname: &'_ str,
    seconds_hidden: Option<u32>,
    delay: Option<u32>,
    maxsize: Option<i32>
) -> Result<(), RsmqError>
[src]

pub async fn delete_message<'_, '_, '_>(
    &'_ mut self,
    qname: &'_ str,
    id: &'_ str
) -> Result<bool, RsmqError>
[src]

pub async fn delete_queue<'_, '_>(
    &'_ mut self,
    qname: &'_ str
) -> Result<(), RsmqError>
[src]

pub async fn get_queue_attributes<'_, '_>(
    &'_ mut self,
    qname: &'_ str
) -> Result<RsmqQueueAttributes, RsmqError>
[src]

pub async fn list_queues<'_>(&'_ mut self) -> Result<Vec<String>, RsmqError>[src]

pub async fn pop_message<'_, '_>(
    &'_ mut self,
    qname: &'_ str
) -> Result<Option<RsmqMessage>, RsmqError>
[src]

pub async fn receive_message<'_, '_>(
    &'_ mut self,
    qname: &'_ str,
    hidden_duration: Option<u64>
) -> Result<Option<RsmqMessage>, RsmqError>
[src]

pub async fn send_message<'_, '_, '_>(
    &'_ mut self,
    qname: &'_ str,
    message: &'_ str,
    delay: Option<u64>
) -> Result<String, RsmqError>
[src]

pub async fn set_queue_attributes<'_, '_>(
    &'_ mut self,
    qname: &'_ str,
    hidden_duration: Option<u64>,
    delay: Option<u64>,
    maxsize: Option<i64>
) -> Result<RsmqQueueAttributes, RsmqError>
[src]

Trait Implementations

impl Debug for Rsmq[src]

Auto Trait Implementations

impl !RefUnwindSafe for Rsmq

impl Send for Rsmq

impl Sync for Rsmq

impl Unpin for Rsmq

impl !UnwindSafe for Rsmq

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,