pub struct GooglePrivacyDlpV2Result {
pub hybrid_stats: Option<GooglePrivacyDlpV2HybridInspectStatistics>,
pub info_type_stats: Option<Vec<GooglePrivacyDlpV2InfoTypeStats>>,
pub num_rows_processed: Option<i64>,
pub processed_bytes: Option<i64>,
pub total_estimated_bytes: Option<i64>,
}Expand description
All Result fields are updated while the job is processing.
This type is not used in any activity, and only used as part of another schema.
Fields§
§hybrid_stats: Option<GooglePrivacyDlpV2HybridInspectStatistics>Statistics related to the processing of hybrid inspect.
info_type_stats: Option<Vec<GooglePrivacyDlpV2InfoTypeStats>>Statistics of how many instances of each info type were found during inspect job.
num_rows_processed: Option<i64>Number of rows scanned after sampling and time filtering (applicable for row based stores such as BigQuery).
processed_bytes: Option<i64>Total size in bytes that were processed.
total_estimated_bytes: Option<i64>Estimate of the number of bytes to process.
Trait Implementations§
Source§impl Clone for GooglePrivacyDlpV2Result
impl Clone for GooglePrivacyDlpV2Result
Source§fn clone(&self) -> GooglePrivacyDlpV2Result
fn clone(&self) -> GooglePrivacyDlpV2Result
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 GooglePrivacyDlpV2Result
impl Debug for GooglePrivacyDlpV2Result
Source§impl Default for GooglePrivacyDlpV2Result
impl Default for GooglePrivacyDlpV2Result
Source§fn default() -> GooglePrivacyDlpV2Result
fn default() -> GooglePrivacyDlpV2Result
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GooglePrivacyDlpV2Result
impl<'de> Deserialize<'de> for GooglePrivacyDlpV2Result
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 Serialize for GooglePrivacyDlpV2Result
impl Serialize for GooglePrivacyDlpV2Result
impl Part for GooglePrivacyDlpV2Result
Auto Trait Implementations§
impl Freeze for GooglePrivacyDlpV2Result
impl RefUnwindSafe for GooglePrivacyDlpV2Result
impl Send for GooglePrivacyDlpV2Result
impl Sync for GooglePrivacyDlpV2Result
impl Unpin for GooglePrivacyDlpV2Result
impl UnwindSafe for GooglePrivacyDlpV2Result
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