pub struct RecordedBulkOut {
pub endpoint: u8,
pub data: Vec<u8>,
}Available on crate feature
fake-transport only.Expand description
Captured bulk OUT payload.
Fields§
§endpoint: u8§data: Vec<u8>Trait Implementations§
Source§impl Clone for RecordedBulkOut
impl Clone for RecordedBulkOut
Source§fn clone(&self) -> RecordedBulkOut
fn clone(&self) -> RecordedBulkOut
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RecordedBulkOut
impl Debug for RecordedBulkOut
impl Eq for RecordedBulkOut
Source§impl PartialEq for RecordedBulkOut
impl PartialEq for RecordedBulkOut
Source§fn eq(&self, other: &RecordedBulkOut) -> bool
fn eq(&self, other: &RecordedBulkOut) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RecordedBulkOut
Auto Trait Implementations§
impl Freeze for RecordedBulkOut
impl RefUnwindSafe for RecordedBulkOut
impl Send for RecordedBulkOut
impl Sync for RecordedBulkOut
impl Unpin for RecordedBulkOut
impl UnsafeUnpin for RecordedBulkOut
impl UnwindSafe for RecordedBulkOut
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