pub struct SqlScanResult {
pub values: Vec<SqlValueScanResult>,
pub masked_sql: String,
}Expand description
Result of scanning a SQL dump.
Fields§
§values: Vec<SqlValueScanResult>Findings grouped by SQL quoted string value.
masked_sql: StringSQL output with quoted value contents masked.
Trait Implementations§
Source§impl Clone for SqlScanResult
impl Clone for SqlScanResult
Source§fn clone(&self) -> SqlScanResult
fn clone(&self) -> SqlScanResult
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 SqlScanResult
impl Debug for SqlScanResult
Source§impl<'de> Deserialize<'de> for SqlScanResult
impl<'de> Deserialize<'de> for SqlScanResult
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
Source§impl PartialEq for SqlScanResult
impl PartialEq for SqlScanResult
Source§fn eq(&self, other: &SqlScanResult) -> bool
fn eq(&self, other: &SqlScanResult) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SqlScanResult
impl Serialize for SqlScanResult
impl StructuralPartialEq for SqlScanResult
Auto Trait Implementations§
impl Freeze for SqlScanResult
impl RefUnwindSafe for SqlScanResult
impl Send for SqlScanResult
impl Sync for SqlScanResult
impl Unpin for SqlScanResult
impl UnsafeUnpin for SqlScanResult
impl UnwindSafe for SqlScanResult
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