pub struct ULogHeader {
pub version: u8,
pub timestamp: u64,
}
Expand description
A header for a ULog file, containing the version and timestamp.
The ULogHeader
struct represents the header of a ULog file, which includes
the version of the ULog format (version
) and the timestamp of when the
ULog file was created (timestamp
). This header is used to parse the
binary data of a ULog file.
Fields§
§version: u8
§timestamp: u64
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ULogHeader
impl RefUnwindSafe for ULogHeader
impl Send for ULogHeader
impl Sync for ULogHeader
impl Unpin for ULogHeader
impl UnwindSafe for ULogHeader
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