pub struct OwnedReadFifoQueueResponse {
pub byte_count: u16,
pub fifo_count: u16,
pub fifo_values: Bytes,
}Expand description
Owned variant of ReadFifoQueueResponse (FC 0x18).
Fields§
§byte_count: u16Total number of bytes following this field.
fifo_count: u16Number of FIFO register values (0..=31).
fifo_values: BytesRaw FIFO register data in big-endian byte order.
Implementations§
Trait Implementations§
Source§impl Clone for OwnedReadFifoQueueResponse
impl Clone for OwnedReadFifoQueueResponse
Source§fn clone(&self) -> OwnedReadFifoQueueResponse
fn clone(&self) -> OwnedReadFifoQueueResponse
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 moreAuto Trait Implementations§
impl !Freeze for OwnedReadFifoQueueResponse
impl RefUnwindSafe for OwnedReadFifoQueueResponse
impl Send for OwnedReadFifoQueueResponse
impl Sync for OwnedReadFifoQueueResponse
impl Unpin for OwnedReadFifoQueueResponse
impl UnsafeUnpin for OwnedReadFifoQueueResponse
impl UnwindSafe for OwnedReadFifoQueueResponse
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