pub struct RawInputFrame {
pub index: u64,
pub bytes: Bytes,
}Expand description
One raw frame as presented to the Interpreter (exact chunk bytes).
Fields§
§index: u64Index in feed order.
bytes: BytesExact bytes of this chunk.
Trait Implementations§
Source§impl Clone for RawInputFrame
impl Clone for RawInputFrame
Source§fn clone(&self) -> RawInputFrame
fn clone(&self) -> RawInputFrame
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 RawInputFrame
impl RefUnwindSafe for RawInputFrame
impl Send for RawInputFrame
impl Sync for RawInputFrame
impl Unpin for RawInputFrame
impl UnsafeUnpin for RawInputFrame
impl UnwindSafe for RawInputFrame
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