pub struct Header {
pub time_base_unix_ns: i64,
pub participants: Vec<ParticipantEntry>,
pub topics: Vec<TopicEntry>,
}Expand description
Header eines .zddsrec-Files.
Fields§
§time_base_unix_ns: i64UNIX-Epoch-Timestamp in Nanosekunden — Frame-Timestamps sind Deltas relativ dazu.
participants: Vec<ParticipantEntry>Bekannte Participants (Reihenfolge ist Frame-Index).
topics: Vec<TopicEntry>Bekannte Topics (Reihenfolge ist 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