pub struct Request {
pub realm: ShortString,
pub exclusive: bool,
pub passive: bool,
pub active: bool,
pub write: bool,
pub read: bool,
}
Expand description
request (Generated)
Fields§
§realm: ShortString
realm (Generated)
exclusive: bool
exclusive (Generated)
passive: bool
passive (Generated)
active: bool
active (Generated)
write: bool
write (Generated)
read: bool
read (Generated)
Implementations§
Source§impl Request
impl Request
Sourcepub fn get_amqp_class_id(&self) -> u16
pub fn get_amqp_class_id(&self) -> u16
Get the AMQP class id for request (Generated)
Sourcepub fn get_amqp_method_id(&self) -> u16
pub fn get_amqp_method_id(&self) -> u16
Get the AMQP method id for request (Generated)
Trait Implementations§
impl StructuralPartialEq for Request
Auto Trait Implementations§
impl Freeze for Request
impl RefUnwindSafe for Request
impl Send for Request
impl Sync for Request
impl Unpin for Request
impl UnwindSafe for Request
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