pub struct QueryTiming { /* private fields */ }Expand description
Query timing display for execution performance visualization.
Shows a breakdown of query execution time with optional phase details.
Implementations§
Source§impl QueryTiming
impl QueryTiming
Sourcepub fn render_plain(&self) -> String
pub fn render_plain(&self) -> String
Render as plain text.
Sourcepub fn render_styled(&self) -> String
pub fn render_styled(&self) -> String
Render as styled text with ANSI colors and bar charts.
Trait Implementations§
Source§impl Clone for QueryTiming
impl Clone for QueryTiming
Source§fn clone(&self) -> QueryTiming
fn clone(&self) -> QueryTiming
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 QueryTiming
impl Debug for QueryTiming
Auto Trait Implementations§
impl Freeze for QueryTiming
impl RefUnwindSafe for QueryTiming
impl Send for QueryTiming
impl Sync for QueryTiming
impl Unpin for QueryTiming
impl UnwindSafe for QueryTiming
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