pub struct DeclareMethod {
pub reserved1: u16,
pub queue: AmqpString,
pub passive: bool,
pub durable: bool,
pub exclusive: bool,
pub auto_delete: bool,
pub no_wait: bool,
pub arguments: HashMap<AmqpString, FieldArgument>,
}
Fields§
§reserved1: u16
§queue: AmqpString
§passive: bool
§durable: bool
§exclusive: bool
§auto_delete: bool
§no_wait: bool
§arguments: HashMap<AmqpString, FieldArgument>
Trait Implementations§
Source§impl Clone for DeclareMethod
impl Clone for DeclareMethod
Source§fn clone(&self) -> DeclareMethod
fn clone(&self) -> DeclareMethod
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 DeclareMethod
impl Debug for DeclareMethod
Source§impl PartialEq for DeclareMethod
impl PartialEq for DeclareMethod
impl StructuralPartialEq for DeclareMethod
Auto Trait Implementations§
impl !Freeze for DeclareMethod
impl RefUnwindSafe for DeclareMethod
impl Send for DeclareMethod
impl Sync for DeclareMethod
impl Unpin for DeclareMethod
impl UnwindSafe for DeclareMethod
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