pub struct TableGroupSettings {
pub span_range: Range<usize>,
pub attributes: Vec<Attribute>,
}
Expand description
Represents settings of the table group.
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 TableGroupSettings
impl Clone for TableGroupSettings
Source§fn clone(&self) -> TableGroupSettings
fn clone(&self) -> TableGroupSettings
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 TableGroupSettings
impl Debug for TableGroupSettings
Source§impl Default for TableGroupSettings
impl Default for TableGroupSettings
Source§fn default() -> TableGroupSettings
fn default() -> TableGroupSettings
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for TableGroupSettings
impl RefUnwindSafe for TableGroupSettings
impl Send for TableGroupSettings
impl Sync for TableGroupSettings
impl Unpin for TableGroupSettings
impl UnwindSafe for TableGroupSettings
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