pub struct PerformanceMetrics<'a> {
pub exectime: f32,
pub rowcount: u32,
pub exec_id: i64,
pub sql: Cow<'a, str>,
}Expand description
SQL 记录的性能指标和 SQL 语句
包含 SQL 执行的性能指标,如执行时间、影响行数、执行 ID 和完整的 SQL 语句。
Fields§
§exectime: f32执行时间(毫秒)
rowcount: u32影响的行数
exec_id: i64执行 ID
sql: Cow<'a, str>完整的 SQL 语句
Trait Implementations§
Source§impl<'a> Clone for PerformanceMetrics<'a>
impl<'a> Clone for PerformanceMetrics<'a>
Source§fn clone(&self) -> PerformanceMetrics<'a>
fn clone(&self) -> PerformanceMetrics<'a>
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<'a> Debug for PerformanceMetrics<'a>
impl<'a> Debug for PerformanceMetrics<'a>
Source§impl<'a> Default for PerformanceMetrics<'a>
impl<'a> Default for PerformanceMetrics<'a>
Source§fn default() -> PerformanceMetrics<'a>
fn default() -> PerformanceMetrics<'a>
Returns the “default value” for a type. Read more
Source§impl<'a> PartialEq for PerformanceMetrics<'a>
impl<'a> PartialEq for PerformanceMetrics<'a>
impl<'a> StructuralPartialEq for PerformanceMetrics<'a>
Auto Trait Implementations§
impl<'a> Freeze for PerformanceMetrics<'a>
impl<'a> RefUnwindSafe for PerformanceMetrics<'a>
impl<'a> Send for PerformanceMetrics<'a>
impl<'a> Sync for PerformanceMetrics<'a>
impl<'a> Unpin for PerformanceMetrics<'a>
impl<'a> UnsafeUnpin for PerformanceMetrics<'a>
impl<'a> UnwindSafe for PerformanceMetrics<'a>
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more