Struct gapi_grpc::google::privacy::dlp::v2::TransformationSummary[][src]

pub struct TransformationSummary {
    pub info_type: Option<InfoType>,
    pub field: Option<FieldId>,
    pub transformation: Option<PrimitiveTransformation>,
    pub field_transformations: Vec<FieldTransformation>,
    pub record_suppress: Option<RecordSuppression>,
    pub results: Vec<SummaryResult>,
    pub transformed_bytes: i64,
}

Summary of a single transformation. Only one of ‘transformation’, ‘field_transformation’, or ‘record_suppress’ will be set.

Fields

info_type: Option<InfoType>

Set if the transformation was limited to a specific InfoType.

field: Option<FieldId>

Set if the transformation was limited to a specific FieldId.

transformation: Option<PrimitiveTransformation>

The specific transformation these stats apply to.

field_transformations: Vec<FieldTransformation>

The field transformation that was applied. If multiple field transformations are requested for a single field, this list will contain all of them; otherwise, only one is supplied.

record_suppress: Option<RecordSuppression>

The specific suppression option these stats apply to.

results: Vec<SummaryResult>

Collection of all transformations that took place or had an error.

transformed_bytes: i64

Total size in bytes that were transformed in some way.

Trait Implementations

impl Clone for TransformationSummary[src]

impl Debug for TransformationSummary[src]

impl Default for TransformationSummary[src]

impl Message for TransformationSummary[src]

impl PartialEq<TransformationSummary> for TransformationSummary[src]

impl StructuralPartialEq for TransformationSummary[src]

Auto Trait Implementations

impl RefUnwindSafe for TransformationSummary

impl Send for TransformationSummary

impl Sync for TransformationSummary

impl Unpin for TransformationSummary

impl UnwindSafe for TransformationSummary

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> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> IntoRequest<T> for 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<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]