pub struct ExtraBytes {
pub data: [u8; 192],
pub len: u8,
}Expand description
Opaque extra-byte payload (up to 192 bytes, matching the LAS 1.4 limit).
Fields§
§data: [u8; 192]Raw bytes.
len: u8Number of valid bytes in data.
Trait Implementations§
Source§impl Clone for ExtraBytes
impl Clone for ExtraBytes
Source§fn clone(&self) -> ExtraBytes
fn clone(&self) -> ExtraBytes
Returns a duplicate of the value. Read more
1.0.0 · 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 ExtraBytes
impl Debug for ExtraBytes
Source§impl Default for ExtraBytes
impl Default for ExtraBytes
impl Copy for ExtraBytes
Auto Trait Implementations§
impl Freeze for ExtraBytes
impl RefUnwindSafe for ExtraBytes
impl Send for ExtraBytes
impl Sync for ExtraBytes
impl Unpin for ExtraBytes
impl UnsafeUnpin for ExtraBytes
impl UnwindSafe for ExtraBytes
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