pub struct CustomQueueDeclareOptions {
pub passive: bool,
pub durable: bool,
pub exclusive: bool,
pub auto_delete: bool,
pub arguments: FieldTable,
}Expand description
Custom Queue declaration options (wrapper around lapin’s options)
Fields§
§passive: bool§durable: bool§exclusive: bool§auto_delete: bool§arguments: FieldTableTrait Implementations§
Source§impl Clone for CustomQueueDeclareOptions
impl Clone for CustomQueueDeclareOptions
Source§fn clone(&self) -> CustomQueueDeclareOptions
fn clone(&self) -> CustomQueueDeclareOptions
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 CustomQueueDeclareOptions
impl Debug for CustomQueueDeclareOptions
Auto Trait Implementations§
impl Freeze for CustomQueueDeclareOptions
impl RefUnwindSafe for CustomQueueDeclareOptions
impl Send for CustomQueueDeclareOptions
impl Sync for CustomQueueDeclareOptions
impl Unpin for CustomQueueDeclareOptions
impl UnwindSafe for CustomQueueDeclareOptions
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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