pub struct TableColspec { /* private fields */ }
Implementations§
Source§impl TableColspec
impl TableColspec
pub fn new(common: CommonAttributes, extra: TableColspec) -> TableColspec
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 Element for TableColspec
impl Element for TableColspec
fn ids_mut(&mut self) -> &mut Vec<ID>
Source§fn names(&self) -> &Vec<NameToken>
fn names(&self) -> &Vec<NameToken>
a list containing the names of an element, typically originating from the element’s title or content.
Each name in names must be unique; if there are name conflicts (two or more elements want to the same name),
the contents will be transferred to the dupnames attribute on the duplicate elements.
An element may have at most one of the names or dupnames attributes, but not both.
fn names_mut(&mut self) -> &mut Vec<NameToken>
fn source(&self) -> &Option<PathBuf>
fn source_mut(&mut self) -> &mut Option<PathBuf>
fn classes(&self) -> &Vec<String>
fn classes_mut(&mut self) -> &mut Vec<String>
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 From<TableColspec> for SubTableGroup
impl From<TableColspec> for SubTableGroup
Source§fn from(inner: TableColspec) -> Self
fn from(inner: TableColspec) -> Self
Converts to this type from the input type.
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