pub struct TableColspec {
pub colnum: Option<usize>,
pub colname: Option<NameToken>,
pub colwidth: Option<String>,
pub colsep: Option<bool>,
pub rowsep: Option<bool>,
pub align: Option<TableAlignH>,
pub char: Option<char>,
pub charoff: Option<usize>,
pub stub: Option<bool>,
}
Fields§
§colnum: Option<usize>
§colname: Option<NameToken>
§colwidth: Option<String>
§colsep: Option<bool>
§rowsep: Option<bool>
§align: Option<TableAlignH>
§char: Option<char>
§charoff: Option<usize>
§stub: Option<bool>
Trait Implementations§
Source§impl Clone for TableColspec
impl Clone for TableColspec
Source§fn clone(&self) -> TableColspec
fn clone(&self) -> TableColspec
Returns a copy 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 TableColspec
impl Debug for TableColspec
Source§impl Default for TableColspec
impl Default for TableColspec
Source§fn default() -> TableColspec
fn default() -> TableColspec
Returns the “default value” for a type. Read more
Source§impl ExtraAttributes<TableColspec> for TableColspec
impl ExtraAttributes<TableColspec> for TableColspec
fn with_extra(extra: TableColspec) -> TableColspec
fn extra(&self) -> &TableColspec
fn extra_mut(&mut self) -> &mut TableColspec
Source§impl PartialEq for TableColspec
impl PartialEq for TableColspec
Source§impl Serialize for TableColspec
impl Serialize for TableColspec
impl StructuralPartialEq for TableColspec
Auto Trait Implementations§
impl Freeze for TableColspec
impl RefUnwindSafe for TableColspec
impl Send for TableColspec
impl Sync for TableColspec
impl Unpin for TableColspec
impl UnwindSafe for TableColspec
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