pub struct RunningQuery {
pub sql: String,
pub started_at: DateTime<Utc>,
}Expand description
The query a member is currently running (set while checked out).
Fields§
§sql: StringA single-line, truncated preview of the SQL.
started_at: DateTime<Utc>When the query started running.
Trait Implementations§
Source§impl Clone for RunningQuery
impl Clone for RunningQuery
Source§fn clone(&self) -> RunningQuery
fn clone(&self) -> RunningQuery
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RunningQuery
impl Debug for RunningQuery
Auto Trait Implementations§
impl Freeze for RunningQuery
impl RefUnwindSafe for RunningQuery
impl Send for RunningQuery
impl Sync for RunningQuery
impl Unpin for RunningQuery
impl UnsafeUnpin for RunningQuery
impl UnwindSafe for RunningQuery
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