[][src]Struct google_dlp2::GooglePrivacyDlpV2Result

pub struct GooglePrivacyDlpV2Result {
    pub info_type_stats: Option<Vec<GooglePrivacyDlpV2InfoTypeStats>>,
    pub total_estimated_bytes: Option<String>,
    pub processed_bytes: Option<String>,
    pub hybrid_stats: Option<GooglePrivacyDlpV2HybridInspectStatistics>,
}

All result fields mentioned below are updated while the job is processing.

This type is not used in any activity, and only used as part of another schema.

Fields

info_type_stats: Option<Vec<GooglePrivacyDlpV2InfoTypeStats>>

Statistics of how many instances of each info type were found during inspect job.

total_estimated_bytes: Option<String>

Estimate of the number of bytes to process.

processed_bytes: Option<String>

Total size in bytes that were processed.

hybrid_stats: Option<GooglePrivacyDlpV2HybridInspectStatistics>

Statistics related to the processing of hybrid inspect. Early access feature is in a pre-release state and might change or have limited support. For more information, see https://cloud.google.com/products#product-launch-stages.

Trait Implementations

impl Clone for GooglePrivacyDlpV2Result[src]

impl Debug for GooglePrivacyDlpV2Result[src]

impl Default for GooglePrivacyDlpV2Result[src]

impl<'de> Deserialize<'de> for GooglePrivacyDlpV2Result[src]

impl Part for GooglePrivacyDlpV2Result[src]

impl Serialize for GooglePrivacyDlpV2Result[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Typeable for T where
    T: Any