pub enum QueryMode {
Load(LoadSpec),
Delete(DeleteSpec),
}Expand description
QueryMode Discriminates load vs delete intent at planning time. Encodes mode-specific fields so invalid states are unrepresentable. Mode checks are explicit and stable at execution time.
Variants§
Load(LoadSpec)
Delete(DeleteSpec)
Implementations§
Trait Implementations§
impl Copy for QueryMode
impl Eq for QueryMode
impl StructuralPartialEq for QueryMode
Auto Trait Implementations§
impl Freeze for QueryMode
impl RefUnwindSafe for QueryMode
impl Send for QueryMode
impl Sync for QueryMode
impl Unpin for QueryMode
impl UnwindSafe for QueryMode
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