Skip to main content

JdbcEvent

Struct JdbcEvent 

Source
pub struct JdbcEvent {
Show 25 fields pub line_number: u64, pub raw: String, pub level: String, pub event_time_text: String, pub event_time_ms: Option<i64>, pub tid: Option<i32>, pub thread: String, pub conn_id: Option<i32>, pub pstmt_id: Option<i32>, pub rs_id: Option<i32>, pub result_set_id: Option<i32>, pub handle_id: Option<i32>, pub session_id_hex: Option<String>, pub method: String, pub arg_types: String, pub return_value: Option<String>, pub params: Option<String>, pub param_index: Option<i32>, pub param_value: Option<String>, pub column_name: Option<String>, pub used_time_text: Option<String>, pub used_time_ms: Option<f64>, pub exec_id: Option<i64>, pub cmd: Option<String>, pub category: &'static str,
}
Expand description

一条可独立保存的驱动日志事件。

文件迭代器返回此类型;统一入口会将 JDBC 记录包装为 crate::LogEvent::Jdbc。

Fields§

§line_number: u64§raw: String§level: String§event_time_text: String§event_time_ms: Option<i64>§tid: Option<i32>§thread: String§conn_id: Option<i32>§pstmt_id: Option<i32>§rs_id: Option<i32>§result_set_id: Option<i32>§handle_id: Option<i32>§session_id_hex: Option<String>§method: String§arg_types: String§return_value: Option<String>§params: Option<String>§param_index: Option<i32>§param_value: Option<String>§column_name: Option<String>§used_time_text: Option<String>§used_time_ms: Option<f64>§exec_id: Option<i64>§cmd: Option<String>§category: &'static str

Trait Implementations§

Source§

impl Clone for DriverLogEvent

Source§

fn clone(&self) -> DriverLogEvent

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for DriverLogEvent

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl LogRecord for DriverLogEvent

Source§

fn method(&self) -> &str

Source§

fn category(&self) -> &str

Source§

fn used_time_ms(&self) -> Option<f64>

Source§

fn exec_id(&self) -> Option<i64>

Source§

impl PartialEq for DriverLogEvent

Source§

fn eq(&self, other: &DriverLogEvent) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl StructuralPartialEq for DriverLogEvent

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.