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

pub struct InfoTypeDescription {
    pub name: String,
    pub display_name: String,
    pub supported_by: Vec<i32>,
    pub description: String,
}

InfoType description.

Fields

name: String

Internal name of the infoType.

display_name: String

Human readable form of the infoType name.

supported_by: Vec<i32>

Which parts of the API supports this InfoType.

description: String

Description of the infotype. Translated when language is provided in the request.

Implementations

impl InfoTypeDescription[src]

pub fn supported_by(
    &self
) -> FilterMap<Cloned<Iter<'_, i32>>, fn(_: i32) -> Option<InfoTypeSupportedBy>>
[src]

Returns an iterator which yields the valid enum values contained in supported_by.

pub fn push_supported_by(&mut self, value: InfoTypeSupportedBy)[src]

Appends the provided enum value to supported_by.

Trait Implementations

impl Clone for InfoTypeDescription[src]

impl Debug for InfoTypeDescription[src]

impl Default for InfoTypeDescription[src]

impl Message for InfoTypeDescription[src]

impl PartialEq<InfoTypeDescription> for InfoTypeDescription[src]

impl StructuralPartialEq for InfoTypeDescription[src]

Auto Trait Implementations

impl RefUnwindSafe for InfoTypeDescription

impl Send for InfoTypeDescription

impl Sync for InfoTypeDescription

impl Unpin for InfoTypeDescription

impl UnwindSafe for InfoTypeDescription

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]