[][src]Struct google_dlp2::GooglePrivacyDlpV2DlpJob

pub struct GooglePrivacyDlpV2DlpJob {
    pub errors: Option<Vec<GooglePrivacyDlpV2Error>>,
    pub name: Option<String>,
    pub inspect_details: Option<GooglePrivacyDlpV2InspectDataSourceDetails>,
    pub risk_details: Option<GooglePrivacyDlpV2AnalyzeDataSourceRiskDetails>,
    pub state: Option<String>,
    pub job_trigger_name: Option<String>,
    pub start_time: Option<String>,
    pub end_time: Option<String>,
    pub type_: Option<String>,
    pub create_time: Option<String>,
}

Combines all of the information about a DLP job.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

errors: Option<Vec<GooglePrivacyDlpV2Error>>

A stream of errors encountered running the job.

name: Option<String>

The server-assigned name.

inspect_details: Option<GooglePrivacyDlpV2InspectDataSourceDetails>

Results from inspecting a data source.

risk_details: Option<GooglePrivacyDlpV2AnalyzeDataSourceRiskDetails>

Results from analyzing risk of a data source.

state: Option<String>

State of a job.

job_trigger_name: Option<String>

If created by a job trigger, the resource name of the trigger that instantiated the job.

start_time: Option<String>

Time when the job started.

end_time: Option<String>

Time when the job finished.

type_: Option<String>

The type of job.

create_time: Option<String>

Time when the job was created.

Trait Implementations

impl Clone for GooglePrivacyDlpV2DlpJob[src]

impl Debug for GooglePrivacyDlpV2DlpJob[src]

impl Default for GooglePrivacyDlpV2DlpJob[src]

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

impl ResponseResult for GooglePrivacyDlpV2DlpJob[src]

impl Serialize for GooglePrivacyDlpV2DlpJob[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