pub struct RawFrame {
pub leader: Leader,
pub payload: Bytes,
pub trailer: Trailer,
}Expand description
A raw frame as received from the U3V stream, before conversion to
the transport-agnostic Frame type.
Fields§
§leader: LeaderLeader containing image metadata.
payload: BytesRaw pixel payload.
trailer: TrailerTrailer with status and block ID.
Trait Implementations§
Auto Trait Implementations§
impl !Freeze for RawFrame
impl RefUnwindSafe for RawFrame
impl Send for RawFrame
impl Sync for RawFrame
impl Unpin for RawFrame
impl UnsafeUnpin for RawFrame
impl UnwindSafe for RawFrame
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