Struct leetcode_tui_rs::migrations::sea_orm::DebugQuery
source · pub struct DebugQuery<'a, Q, T> {
pub query: &'a Q,
pub value: T,
}
Expand description
This structure provides debug capabilities
Fields§
§query: &'a Q
The query to debug
value: T
The value of the query
Implementations§
source§impl<'a, Q> DebugQuery<'a, Q, DatabaseBackend>where
Q: QueryTrait,
impl<'a, Q> DebugQuery<'a, Q, DatabaseBackend>where Q: QueryTrait,
source§impl<'a, Q> DebugQuery<'a, Q, &DatabaseBackend>where
Q: QueryTrait,
impl<'a, Q> DebugQuery<'a, Q, &DatabaseBackend>where Q: QueryTrait,
source§impl<'a, Q> DebugQuery<'a, Q, DatabaseConnection>where
Q: QueryTrait,
impl<'a, Q> DebugQuery<'a, Q, DatabaseConnection>where Q: QueryTrait,
source§impl<'a, Q> DebugQuery<'a, Q, &DatabaseConnection>where
Q: QueryTrait,
impl<'a, Q> DebugQuery<'a, Q, &DatabaseConnection>where Q: QueryTrait,
Trait Implementations§
Auto Trait Implementations§
impl<'a, Q, T> RefUnwindSafe for DebugQuery<'a, Q, T>where Q: RefUnwindSafe, T: RefUnwindSafe,
impl<'a, Q, T> Send for DebugQuery<'a, Q, T>where Q: Sync, T: Send,
impl<'a, Q, T> Sync for DebugQuery<'a, Q, T>where Q: Sync, T: Sync,
impl<'a, Q, T> Unpin for DebugQuery<'a, Q, T>where T: Unpin,
impl<'a, Q, T> UnwindSafe for DebugQuery<'a, Q, T>where Q: RefUnwindSafe, T: UnwindSafe,
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