pub struct GooglePrivacyDlpV2PartitionId {
pub namespace_id: Option<String>,
pub project_id: Option<String>,
}Expand description
Datastore partition ID. A partition ID identifies a grouping of entities. The grouping is always by project and namespace, however the namespace ID may be empty. A partition ID contains several dimensions: project ID and namespace ID.
This type is not used in any activity, and only used as part of another schema.
Fields§
§namespace_id: Option<String>If not empty, the ID of the namespace to which the entities belong.
project_id: Option<String>The ID of the project to which the entities belong.
Trait Implementations§
Source§impl Clone for GooglePrivacyDlpV2PartitionId
impl Clone for GooglePrivacyDlpV2PartitionId
Source§fn clone(&self) -> GooglePrivacyDlpV2PartitionId
fn clone(&self) -> GooglePrivacyDlpV2PartitionId
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for GooglePrivacyDlpV2PartitionId
impl Default for GooglePrivacyDlpV2PartitionId
Source§fn default() -> GooglePrivacyDlpV2PartitionId
fn default() -> GooglePrivacyDlpV2PartitionId
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GooglePrivacyDlpV2PartitionId
impl<'de> Deserialize<'de> for GooglePrivacyDlpV2PartitionId
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Part for GooglePrivacyDlpV2PartitionId
Auto Trait Implementations§
impl Freeze for GooglePrivacyDlpV2PartitionId
impl RefUnwindSafe for GooglePrivacyDlpV2PartitionId
impl Send for GooglePrivacyDlpV2PartitionId
impl Sync for GooglePrivacyDlpV2PartitionId
impl Unpin for GooglePrivacyDlpV2PartitionId
impl UnwindSafe for GooglePrivacyDlpV2PartitionId
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more