pub enum QueryPhase {
Before,
During,
AfterSuccess,
AfterError,
}Expand description
The current phase of query execution.
Variants§
Before
Before the query is executed.
During
During query execution.
AfterSuccess
After the query has completed successfully.
AfterError
After the query has failed.
Trait Implementations§
Source§impl Clone for QueryPhase
impl Clone for QueryPhase
Source§fn clone(&self) -> QueryPhase
fn clone(&self) -> QueryPhase
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for QueryPhase
impl Debug for QueryPhase
Source§impl PartialEq for QueryPhase
impl PartialEq for QueryPhase
impl Copy for QueryPhase
impl Eq for QueryPhase
impl StructuralPartialEq for QueryPhase
Auto Trait Implementations§
impl Freeze for QueryPhase
impl RefUnwindSafe for QueryPhase
impl Send for QueryPhase
impl Sync for QueryPhase
impl Unpin for QueryPhase
impl UnwindSafe for QueryPhase
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