pub struct FileHeader {
pub description: String,
pub file_name: String,
pub time_stamp: String,
pub authors: Vec<String>,
pub organizations: Vec<String>,
pub preprocessor_version: String,
pub originating_system: String,
pub authorisation: String,
}Expand description
The Part 21 HEADER section fields (FILE_DESCRIPTION + FILE_NAME).
The default (all empty) matches what step-io has always emitted; the
builder fills it from user input plus its automatic timestamp and
preprocessor stamp.
Fields§
§description: StringFILE_DESCRIPTION.description (single entry).
file_name: StringFILE_NAME.name.
time_stamp: StringFILE_NAME.time_stamp.
FILE_NAME.author; empty renders as the customary ('').
organizations: Vec<String>FILE_NAME.organization; empty renders as the customary ('').
preprocessor_version: StringFILE_NAME.preprocessor_version.
originating_system: StringFILE_NAME.originating_system.
FILE_NAME.authorisation.
Trait Implementations§
Source§impl Clone for FileHeader
impl Clone for FileHeader
Source§fn clone(&self) -> FileHeader
fn clone(&self) -> FileHeader
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 FileHeader
impl Debug for FileHeader
Source§impl Default for FileHeader
impl Default for FileHeader
Source§fn default() -> FileHeader
fn default() -> FileHeader
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for FileHeader
impl RefUnwindSafe for FileHeader
impl Send for FileHeader
impl Sync for FileHeader
impl Unpin for FileHeader
impl UnsafeUnpin for FileHeader
impl UnwindSafe for FileHeader
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