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>,
}
Expand description
the first line in FIGlet font, which you can find the documentation headerline
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 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 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