pub enum InspectAction {
Databases(InspectDatabasesArgs),
Database,
Schemas,
Schema(InspectSchemaArgs),
Snapshot(InspectSchemaArgs),
Tables(InspectTablesArgs),
Views(InspectViewsArgs),
Indexes(InspectIndexesArgs),
Table(InspectTableArgs),
}Expand description
Schema-discovery request, already narrowed to the shape that matched.
Variants§
Databases(InspectDatabasesArgs)
Database
Schemas
Schema(InspectSchemaArgs)
Snapshot(InspectSchemaArgs)
Tables(InspectTablesArgs)
Views(InspectViewsArgs)
Indexes(InspectIndexesArgs)
Table(InspectTableArgs)
Auto Trait Implementations§
impl Freeze for InspectAction
impl RefUnwindSafe for InspectAction
impl Send for InspectAction
impl Sync for InspectAction
impl Unpin for InspectAction
impl UnsafeUnpin for InspectAction
impl UnwindSafe for InspectAction
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