pub struct HeaderLine {
pub header_line: String,
pub signature: String,
pub hardblank: char,
pub height: i32,
pub baseline: i32,
pub max_length: i32,
pub old_layout: i32,
pub comment_lines: i32,
pub print_direction: Option<i32>,
pub full_layout: Option<i32>,
pub codetag_count: Option<i32>,
}Fields§
§header_line: String§signature: String§hardblank: char§height: i32§baseline: i32§max_length: i32§old_layout: i32§comment_lines: i32§print_direction: Option<i32>§full_layout: Option<i32>§codetag_count: Option<i32>Trait Implementations§
Source§impl Clone for HeaderLine
impl Clone for HeaderLine
Source§fn clone(&self) -> HeaderLine
fn clone(&self) -> HeaderLine
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 HeaderLine
impl Debug for HeaderLine
Auto Trait Implementations§
impl Freeze for HeaderLine
impl RefUnwindSafe for HeaderLine
impl Send for HeaderLine
impl Sync for HeaderLine
impl Unpin for HeaderLine
impl UnsafeUnpin for HeaderLine
impl UnwindSafe for HeaderLine
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