pub enum TableItem<'ast> {
List {
value: Expression<'ast>,
},
Record {
key: Expression<'ast>,
value: Expression<'ast>,
},
General {
key: Expression<'ast>,
value: Expression<'ast>,
},
}Variants§
Implementations§
Trait Implementations§
impl<'ast> Copy for TableItem<'ast>
impl<'ast> StructuralPartialEq for TableItem<'ast>
Auto Trait Implementations§
impl<'ast> !Send for TableItem<'ast>
impl<'ast> !Sync for TableItem<'ast>
impl<'ast> Freeze for TableItem<'ast>
impl<'ast> RefUnwindSafe for TableItem<'ast>
impl<'ast> Unpin for TableItem<'ast>
impl<'ast> UnsafeUnpin for TableItem<'ast>
impl<'ast> UnwindSafe for TableItem<'ast>
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