pub struct LeadIn {
pub tag: [u8; 4],
pub table_of_contents: u32,
pub version_number: u32,
pub next_segment_offset: u64,
pub raw_data_offset: u64,
}
Expand description
LeadIn
represents the 28 bytes representing the lead in to a TDMS Segment.
Fields§
§tag: [u8; 4]
§table_of_contents: u32
§version_number: u32
§next_segment_offset: u64
§raw_data_offset: u64
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LeadIn
impl RefUnwindSafe for LeadIn
impl Send for LeadIn
impl Sync for LeadIn
impl Unpin for LeadIn
impl UnwindSafe for LeadIn
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