pub struct ArrayEnvironmentOptions {
pub columns: Option<Vec<ArrayColumn>>,
pub array_stretch: f64,
pub hskip_before_and_after: bool,
pub cell_style: StyleLevel,
pub max_columns: Option<usize>,
pub single_row: bool,
pub auto_tag: Option<bool>,
pub leqno: bool,
pub add_jot: bool,
pub column_separation_type: Option<ColumnSeparationType>,
}Expand description
Options controlling how an array environment is parsed.
Fields§
§columns: Option<Vec<ArrayColumn>>§array_stretch: f64§hskip_before_and_after: bool§cell_style: StyleLevel§max_columns: Option<usize>§single_row: bool§auto_tag: Option<bool>§leqno: bool§add_jot: bool§column_separation_type: Option<ColumnSeparationType>Trait Implementations§
Source§impl Clone for ArrayEnvironmentOptions
impl Clone for ArrayEnvironmentOptions
Source§fn clone(&self) -> ArrayEnvironmentOptions
fn clone(&self) -> ArrayEnvironmentOptions
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 moreAuto Trait Implementations§
impl Freeze for ArrayEnvironmentOptions
impl RefUnwindSafe for ArrayEnvironmentOptions
impl Send for ArrayEnvironmentOptions
impl Sync for ArrayEnvironmentOptions
impl Unpin for ArrayEnvironmentOptions
impl UnsafeUnpin for ArrayEnvironmentOptions
impl UnwindSafe for ArrayEnvironmentOptions
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