#[non_exhaustive]pub struct DeletePartitionRequest {
pub name: String,
pub etag: String,
/* private fields */
}Expand description
Delete metadata partition request.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.name: StringRequired. The resource name of the partition.
format:
projects/{project_number}/locations/{location_id}/lakes/{lake_id}/zones/{zone_id}/entities/{entity_id}/partitions/{partition_value_path}.
The {partition_value_path} segment consists of an ordered sequence of
partition values separated by “/”. All values must be provided.
etag: String👎Deprecated
Optional. The etag associated with the partition.
Implementations§
Trait Implementations§
Source§impl Clone for DeletePartitionRequest
impl Clone for DeletePartitionRequest
Source§fn clone(&self) -> DeletePartitionRequest
fn clone(&self) -> DeletePartitionRequest
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 Debug for DeletePartitionRequest
impl Debug for DeletePartitionRequest
Source§impl Default for DeletePartitionRequest
impl Default for DeletePartitionRequest
Source§fn default() -> DeletePartitionRequest
fn default() -> DeletePartitionRequest
Returns the “default value” for a type. Read more
Source§impl Message for DeletePartitionRequest
impl Message for DeletePartitionRequest
Source§impl PartialEq for DeletePartitionRequest
impl PartialEq for DeletePartitionRequest
impl StructuralPartialEq for DeletePartitionRequest
Auto Trait Implementations§
impl Freeze for DeletePartitionRequest
impl RefUnwindSafe for DeletePartitionRequest
impl Send for DeletePartitionRequest
impl Sync for DeletePartitionRequest
impl Unpin for DeletePartitionRequest
impl UnwindSafe for DeletePartitionRequest
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