pub struct DeclareQueueOption {
pub name: AmqpString,
pub is_passive: bool,
pub is_durable: bool,
pub is_exclusive: bool,
pub is_auto_delete: bool,
}
Fields§
§name: AmqpString
§is_passive: bool
§is_durable: bool
§is_exclusive: bool
§is_auto_delete: bool
Trait Implementations§
Source§impl Clone for DeclareQueueOption
impl Clone for DeclareQueueOption
Source§fn clone(&self) -> DeclareQueueOption
fn clone(&self) -> DeclareQueueOption
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 moreAuto Trait Implementations§
impl !Freeze for DeclareQueueOption
impl RefUnwindSafe for DeclareQueueOption
impl Send for DeclareQueueOption
impl Sync for DeclareQueueOption
impl Unpin for DeclareQueueOption
impl UnwindSafe for DeclareQueueOption
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