pub enum DbActionPlan {
DbCrud {
is_explain: bool,
plan: CrudPlan,
},
MayUseDb(InspectPlan),
}Expand description
A database action plan
Variants§
DbCrud
A CRUD operation (read, mutate, or call)
MayUseDb(InspectPlan)
An inspect operation (schema introspection via GET /)
Trait Implementations§
Auto Trait Implementations§
impl !Freeze for DbActionPlan
impl RefUnwindSafe for DbActionPlan
impl Send for DbActionPlan
impl Sync for DbActionPlan
impl Unpin for DbActionPlan
impl UnsafeUnpin for DbActionPlan
impl UnwindSafe for DbActionPlan
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