pub struct FrameByteSpan {
pub start: usize,
pub end: usize,
}Expand description
Byte span of one frame within a multi-frame CON buffer (start inclusive, end exclusive).
Fields§
§start: usize§end: usizeImplementations§
Trait Implementations§
Source§impl Clone for FrameByteSpan
impl Clone for FrameByteSpan
Source§fn clone(&self) -> FrameByteSpan
fn clone(&self) -> FrameByteSpan
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 moreimpl Copy for FrameByteSpan
Source§impl Debug for FrameByteSpan
impl Debug for FrameByteSpan
impl Eq for FrameByteSpan
Source§impl PartialEq for FrameByteSpan
impl PartialEq for FrameByteSpan
Source§fn eq(&self, other: &FrameByteSpan) -> bool
fn eq(&self, other: &FrameByteSpan) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for FrameByteSpan
Auto Trait Implementations§
impl Freeze for FrameByteSpan
impl RefUnwindSafe for FrameByteSpan
impl Send for FrameByteSpan
impl Sync for FrameByteSpan
impl Unpin for FrameByteSpan
impl UnsafeUnpin for FrameByteSpan
impl UnwindSafe for FrameByteSpan
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