[][src]Struct google_dlp2::GooglePrivacyDlpV2Key

pub struct GooglePrivacyDlpV2Key {
    pub path: Option<Vec<GooglePrivacyDlpV2PathElement>>,
    pub partition_id: Option<GooglePrivacyDlpV2PartitionId>,
}

A unique identifier for a Datastore entity. If a key's partition ID or any of its path kinds or names are reserved/read-only, the key is reserved/read-only. A reserved/read-only key is forbidden in certain documented contexts.

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

Fields

path: Option<Vec<GooglePrivacyDlpV2PathElement>>

The entity path. An entity path consists of one or more elements composed of a kind and a string or numerical identifier, which identify entities. The first element identifies a root entity, the second element identifies a child of the root entity, the third element identifies a child of the second entity, and so forth. The entities identified by all prefixes of the path are called the element's ancestors.

A path can never be empty, and a path can have at most 100 elements.

partition_id: Option<GooglePrivacyDlpV2PartitionId>

Entities are partitioned into subsets, currently identified by a project ID and namespace ID. Queries are scoped to a single partition.

Trait Implementations

impl Clone for GooglePrivacyDlpV2Key[src]

impl Debug for GooglePrivacyDlpV2Key[src]

impl Default for GooglePrivacyDlpV2Key[src]

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

impl Part for GooglePrivacyDlpV2Key[src]

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