pub struct SqlAuditContext {
pub sql: String,
pub user: String,
pub timestamp: i64,
}Fields§
§sql: String§user: String§timestamp: i64Trait Implementations§
Source§impl Clone for SqlAuditContext
impl Clone for SqlAuditContext
Source§fn clone(&self) -> SqlAuditContext
fn clone(&self) -> SqlAuditContext
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 SqlAuditContext
impl Debug for SqlAuditContext
Source§impl<'de> Deserialize<'de> for SqlAuditContext
impl<'de> Deserialize<'de> for SqlAuditContext
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for SqlAuditContext
impl RefUnwindSafe for SqlAuditContext
impl Send for SqlAuditContext
impl Sync for SqlAuditContext
impl Unpin for SqlAuditContext
impl UnsafeUnpin for SqlAuditContext
impl UnwindSafe for SqlAuditContext
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