pub struct AmqpFrame {
pub frame_type: u8,
pub channel: u16,
pub method: Option<AmqpMethod>,
pub body: Option<Vec<u8>>,
}Fields§
§frame_type: u8§channel: u16§method: Option<AmqpMethod>§body: Option<Vec<u8>>Trait Implementations§
Auto Trait Implementations§
impl Freeze for AmqpFrame
impl RefUnwindSafe for AmqpFrame
impl Send for AmqpFrame
impl Sync for AmqpFrame
impl Unpin for AmqpFrame
impl UnsafeUnpin for AmqpFrame
impl UnwindSafe for AmqpFrame
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