#[non_exhaustive]pub struct DeleteDataTableRequest {
pub name: String,
pub force: bool,
/* private fields */
}Expand description
Request message for deleting data tables.
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 data table to delete. Format projects/{project}/locations/{location}/instances/{instances}/dataTables/{data_table}
force: boolOptional. If set to true, any rows under this data table will also be deleted. (Otherwise, the request will only work if the data table has no rows.)
Implementations§
Trait Implementations§
Source§impl Clone for DeleteDataTableRequest
impl Clone for DeleteDataTableRequest
Source§fn clone(&self) -> DeleteDataTableRequest
fn clone(&self) -> DeleteDataTableRequest
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 DeleteDataTableRequest
impl Debug for DeleteDataTableRequest
Source§impl Default for DeleteDataTableRequest
impl Default for DeleteDataTableRequest
Source§fn default() -> DeleteDataTableRequest
fn default() -> DeleteDataTableRequest
Returns the “default value” for a type. Read more
Source§impl Message for DeleteDataTableRequest
impl Message for DeleteDataTableRequest
Source§impl PartialEq for DeleteDataTableRequest
impl PartialEq for DeleteDataTableRequest
impl StructuralPartialEq for DeleteDataTableRequest
Auto Trait Implementations§
impl Freeze for DeleteDataTableRequest
impl RefUnwindSafe for DeleteDataTableRequest
impl Send for DeleteDataTableRequest
impl Sync for DeleteDataTableRequest
impl Unpin for DeleteDataTableRequest
impl UnsafeUnpin for DeleteDataTableRequest
impl UnwindSafe for DeleteDataTableRequest
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