pub struct Header {
pub time_base_unix_ns: i64,
pub participants: Vec<ParticipantEntry>,
pub topics: Vec<TopicEntry>,
}Expand description
Header of a .zddsrec file.
Fields§
§time_base_unix_ns: i64UNIX epoch timestamp in nanoseconds — frame timestamps are deltas relative to it.
participants: Vec<ParticipantEntry>Known participants (order is the frame index).
topics: Vec<TopicEntry>Known topics (order is the frame index).
Implementations§
Trait Implementations§
impl Eq for Header
impl StructuralPartialEq for Header
Auto Trait Implementations§
impl Freeze for Header
impl RefUnwindSafe for Header
impl Send for Header
impl Sync for Header
impl Unpin for Header
impl UnsafeUnpin for Header
impl UnwindSafe for Header
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