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§impl Debug for TableSettings
impl Debug for TableSettings
Auto Trait Implementations§
impl Freeze for TableSettings
impl RefUnwindSafe for TableSettings
impl Send for TableSettings
impl Sync for TableSettings
impl Unpin for TableSettings
impl UnsafeUnpin 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