pub struct ExchangeDeleteOptions {
pub ticket: u16,
pub if_unused: bool,
pub nowait: bool,
}Fields§
§ticket: u16§if_unused: boolIf set, the server will only delete the exchange if it has no queue bindings.
nowait: 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§
Source§impl Clone for ExchangeDeleteOptions
impl Clone for ExchangeDeleteOptions
Source§fn clone(&self) -> ExchangeDeleteOptions
fn clone(&self) -> ExchangeDeleteOptions
Returns a duplicate 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 moreSource§impl Debug for ExchangeDeleteOptions
impl Debug for ExchangeDeleteOptions
Source§impl Default for ExchangeDeleteOptions
impl Default for ExchangeDeleteOptions
Source§fn default() -> ExchangeDeleteOptions
fn default() -> ExchangeDeleteOptions
Returns the “default value” for a type. Read more
Source§impl PartialEq for ExchangeDeleteOptions
impl PartialEq for ExchangeDeleteOptions
impl StructuralPartialEq for ExchangeDeleteOptions
Auto Trait Implementations§
impl Freeze for ExchangeDeleteOptions
impl RefUnwindSafe for ExchangeDeleteOptions
impl Send for ExchangeDeleteOptions
impl Sync for ExchangeDeleteOptions
impl Unpin for ExchangeDeleteOptions
impl UnwindSafe for ExchangeDeleteOptions
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more