pub struct FlagBitsMessage {
pub compat_flags: [u8; 8],
pub incompat_flags: [u8; 8],
pub appended_offsets: [u64; 3],
}
Expand description
A message containing compatibility and incompatibility flags, as well as appended offsets.
The compat_flags
and incompat_flags
fields are arrays of 8 bytes each, representing
compatibility and incompatibility flags for the ULog file. The appended_offsets
field
is an array of 3 u64
values representing offsets of appended data in the ULog file.
Fields§
§compat_flags: [u8; 8]
§incompat_flags: [u8; 8]
§appended_offsets: [u64; 3]
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FlagBitsMessage
impl RefUnwindSafe for FlagBitsMessage
impl Send for FlagBitsMessage
impl Sync for FlagBitsMessage
impl Unpin for FlagBitsMessage
impl UnwindSafe for FlagBitsMessage
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