pub struct ArraySpec<'arena> {
pub border_left: Option<LineType>,
pub border_top: Option<LineType>,
pub is_sub: bool,
pub column_spec: ColumnSpec<'arena>,
}Fields§
§border_left: Option<LineType>This field determines whether we need to draw a line to the left of the first column. If
None, no line is drawn. If Some(LineType), a line of that type is drawn.
border_top: Option<LineType>This field determines whether we need to draw a line above the first row. If
None, no line is drawn. If Some(LineType), a line of that type is drawn.
is_sub: booltrue if this is a subarray (i.e., a subarray environment in LaTeX). Subarrays have
different padding rules.
column_spec: ColumnSpec<'arena>Trait Implementations§
Source§impl<'arena> PartialEq for ArraySpec<'arena>
impl<'arena> PartialEq for ArraySpec<'arena>
impl<'arena> StructuralPartialEq for ArraySpec<'arena>
Auto Trait Implementations§
impl<'arena> Freeze for ArraySpec<'arena>
impl<'arena> RefUnwindSafe for ArraySpec<'arena>
impl<'arena> Send for ArraySpec<'arena>
impl<'arena> Sync for ArraySpec<'arena>
impl<'arena> Unpin for ArraySpec<'arena>
impl<'arena> UnsafeUnpin for ArraySpec<'arena>
impl<'arena> UnwindSafe for ArraySpec<'arena>
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