Struct lapin_futures_tls_api::lapin::channel::QueueDeleteOptions
pub struct QueueDeleteOptions {
pub ticket: u16,
pub if_unused: bool,
pub if_empty: bool,
pub no_wait: bool,
}Fields§
§ticket: u16§if_unused: boolIf set, the server will only delete the queue if it has no consumers. If the queue has consumers the server does does not delete it but raises a channel exception instead.
if_empty: boolIf set, the server will only delete the queue if it has no messages.
no_wait: boolIf set, the server will not respond to the method. The client should not wait for a reply method. If the server could not complete the method it will raise a channel or connection exception.
Trait Implementations§
§impl Clone for QueueDeleteOptions
impl Clone for QueueDeleteOptions
§fn clone(&self) -> QueueDeleteOptions
fn clone(&self) -> QueueDeleteOptions
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read more§impl Debug for QueueDeleteOptions
impl Debug for QueueDeleteOptions
§impl Default for QueueDeleteOptions
impl Default for QueueDeleteOptions
§fn default() -> QueueDeleteOptions
fn default() -> QueueDeleteOptions
Returns the “default value” for a type. Read more