pub struct AnifHeader {
pub version: (u8, u8),
pub num_points: u32,
pub x_start: f64,
pub x_delta: f64,
pub endian: AnifEndian,
pub title: String,
pub instrument: String,
pub date: String,
}Expand description
Header parsed from an ANIF file.
Fields§
§version: (u8, u8)Format version (major.minor).
num_points: u32Number of data points.
x_start: f64Starting X value.
x_delta: f64X increment per point.
endian: AnifEndianByte endianness.
title: StringUser-defined title string (up to 64 bytes).
instrument: StringInstrument identifier (up to 32 bytes).
date: StringDate string (up to 16 bytes).
Trait Implementations§
Source§impl Clone for AnifHeader
impl Clone for AnifHeader
Source§fn clone(&self) -> AnifHeader
fn clone(&self) -> AnifHeader
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 AnifHeader
impl Debug for AnifHeader
Auto Trait Implementations§
impl Freeze for AnifHeader
impl RefUnwindSafe for AnifHeader
impl Send for AnifHeader
impl Sync for AnifHeader
impl Unpin for AnifHeader
impl UnsafeUnpin for AnifHeader
impl UnwindSafe for AnifHeader
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.