pub struct TableDecl {
pub name: Ident,
pub tags: Vec<TagDecl>,
pub description: Option<StringLiteral>,
pub schema: Ident,
pub rows: Vec<TableRow>,
pub span: SourceSpan,
}Fields§
§name: Ident§description: Option<StringLiteral>§schema: Ident§rows: Vec<TableRow>§span: SourceSpanTrait Implementations§
impl Eq for TableDecl
impl StructuralPartialEq for TableDecl
Auto Trait Implementations§
impl Freeze for TableDecl
impl RefUnwindSafe for TableDecl
impl Send for TableDecl
impl Sync for TableDecl
impl Unpin for TableDecl
impl UnsafeUnpin for TableDecl
impl UnwindSafe for TableDecl
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