pub struct MultiplexFrame {
pub request_id: RequestId,
pub payload: Vec<u8>,
}Expand description
Multiplexed request frame
Fields§
§request_id: RequestIdRequest ID for correlation
payload: Vec<u8>Request/response payload
Trait Implementations§
Source§impl Clone for MultiplexFrame
impl Clone for MultiplexFrame
Source§fn clone(&self) -> MultiplexFrame
fn clone(&self) -> MultiplexFrame
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 MultiplexFrame
impl RefUnwindSafe for MultiplexFrame
impl Send for MultiplexFrame
impl Sync for MultiplexFrame
impl Unpin for MultiplexFrame
impl UnsafeUnpin for MultiplexFrame
impl UnwindSafe for MultiplexFrame
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