pub struct BinaryHeader {
pub magic: [u8; 4],
pub version: u16,
pub data_type: FieldDataType,
pub ndim: u8,
pub dims: [u32; 3],
pub checksum: u32,
}Expand description
Header for a binary physics field record.
Fields§
§magic: [u8; 4]Magic identifier (OXPF).
version: u16Format version.
data_type: FieldDataTypeElement data type.
ndim: u8Number of dimensions (1, 2, or 3).
dims: [u32; 3]Dimension sizes ([nx, ny, nz]; unused dims are 1).
checksum: u32CRC32 checksum of the payload bytes.
Implementations§
Source§impl BinaryHeader
impl BinaryHeader
Sourcepub fn from_bytes(buf: &[u8]) -> Result<Self, String>
pub fn from_bytes(buf: &[u8]) -> Result<Self, String>
Deserialise a header from a 24-byte slice.
Sourcepub fn element_count(&self) -> usize
pub fn element_count(&self) -> usize
Total number of elements (dims[0] * dims[1] * dims[2]).
Trait Implementations§
Source§impl Clone for BinaryHeader
impl Clone for BinaryHeader
Source§fn clone(&self) -> BinaryHeader
fn clone(&self) -> BinaryHeader
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BinaryHeader
impl Debug for BinaryHeader
Source§impl PartialEq for BinaryHeader
impl PartialEq for BinaryHeader
impl Eq for BinaryHeader
impl StructuralPartialEq for BinaryHeader
Auto Trait Implementations§
impl Freeze for BinaryHeader
impl RefUnwindSafe for BinaryHeader
impl Send for BinaryHeader
impl Sync for BinaryHeader
impl Unpin for BinaryHeader
impl UnsafeUnpin for BinaryHeader
impl UnwindSafe for BinaryHeader
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.