pub enum Table {
Pipe(PipeTable),
Grid(GridTable),
Simple(SimpleTable),
Multiline(MultilineTable),
}Variants§
Implementations§
Source§impl Table
impl Table
pub fn cast(syntax: SyntaxNode) -> Option<Self>
pub fn syntax(&self) -> &SyntaxNode
pub fn caption(&self) -> Option<TableCaption>
Auto Trait Implementations§
impl !RefUnwindSafe for Table
impl !Send for Table
impl !Sync for Table
impl !UnwindSafe for Table
impl Freeze for Table
impl Unpin for Table
impl UnsafeUnpin for Table
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