pub struct BinaryHeader {
pub magic: [u8; 4],
pub version: u32,
pub n_atoms: u32,
pub n_frames: u32,
pub dt: f64,
pub endian: u8,
}Expand description
Binary file header for an OxiPhysics trajectory file.
Fields§
§magic: [u8; 4]Magic bytes identifying the file format (e.g. b"OXIP").
version: u32Format version number.
n_atoms: u32Number of atoms per frame.
n_frames: u32Total number of frames in the file.
dt: f64Time step in picoseconds.
endian: u8Endianness flag: 0 = little-endian, 1 = big-endian.
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 (const: unstable) · 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
Source§fn eq(&self, other: &BinaryHeader) -> bool
fn eq(&self, other: &BinaryHeader) -> bool
Tests for
self and other values to be equal, and is used by ==.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.