pub struct DeclareExchangeOption {
pub name: AmqpString,
pub typ: ExchangeType,
pub is_passive: bool,
pub is_durable: bool,
pub is_auto_delete: bool,
pub is_internal: bool,
}Fields§
§name: AmqpString§typ: ExchangeType§is_passive: bool§is_durable: bool§is_auto_delete: bool§is_internal: boolTrait Implementations§
Source§impl Clone for DeclareExchangeOption
impl Clone for DeclareExchangeOption
Source§fn clone(&self) -> DeclareExchangeOption
fn clone(&self) -> DeclareExchangeOption
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 DeclareExchangeOption
impl RefUnwindSafe for DeclareExchangeOption
impl Send for DeclareExchangeOption
impl Sync for DeclareExchangeOption
impl Unpin for DeclareExchangeOption
impl UnwindSafe for DeclareExchangeOption
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