pub struct TableSettings {
pub span_range: Range<usize>,
pub attributes: Vec<Attribute>,
}
Expand description
Represents settings of the table.
Fields§
§span_range: Range<usize>
The range of the span in the source text.
attributes: Vec<Attribute>
A vector of key and optional value pairs representing attributes of the table.
Trait Implementations§
Source§impl Clone for TableSettings
impl Clone for TableSettings
Source§fn clone(&self) -> TableSettings
fn clone(&self) -> TableSettings
Returns a duplicate 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 TableSettings
impl Debug for TableSettings
Source§impl Default for TableSettings
impl Default for TableSettings
Source§fn default() -> TableSettings
fn default() -> TableSettings
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for TableSettings
impl RefUnwindSafe for TableSettings
impl Send for TableSettings
impl Sync for TableSettings
impl Unpin for TableSettings
impl UnwindSafe for TableSettings
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