pub struct IndicatorsParts {
pub execute_time: f32,
pub row_count: u32,
pub execute_id: i64,
}Expand description
性能指标部分
包含 SQL 执行的性能指标,如执行时间、影响行数等。
Fields§
§execute_time: f32执行时间(毫秒)
row_count: u32影响的行数
execute_id: i64执行 ID
Trait Implementations§
Source§impl Clone for IndicatorsParts
impl Clone for IndicatorsParts
Source§fn clone(&self) -> IndicatorsParts
fn clone(&self) -> IndicatorsParts
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 IndicatorsParts
impl Debug for IndicatorsParts
Source§impl Default for IndicatorsParts
impl Default for IndicatorsParts
Source§fn default() -> IndicatorsParts
fn default() -> IndicatorsParts
Returns the “default value” for a type. Read more
Source§impl PartialEq for IndicatorsParts
impl PartialEq for IndicatorsParts
impl Copy for IndicatorsParts
impl StructuralPartialEq for IndicatorsParts
Auto Trait Implementations§
impl Freeze for IndicatorsParts
impl RefUnwindSafe for IndicatorsParts
impl Send for IndicatorsParts
impl Sync for IndicatorsParts
impl Unpin for IndicatorsParts
impl UnwindSafe for IndicatorsParts
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