#[non_exhaustive]pub struct DeleteDataScanRequest {
pub name: String,
pub force: bool,
/* private fields */
}Expand description
Delete dataScan 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 dataScan:
projects/{project}/locations/{location_id}/dataScans/{data_scan_id}
where project refers to a project_id or project_number and
location_id refers to a Google Cloud region.
force: boolOptional. If set to true, any child resources of this data scan will also be deleted. (Otherwise, the request will only work if the data scan has no child resources.)
Implementations§
Trait Implementations§
Source§impl Clone for DeleteDataScanRequest
impl Clone for DeleteDataScanRequest
Source§fn clone(&self) -> DeleteDataScanRequest
fn clone(&self) -> DeleteDataScanRequest
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 DeleteDataScanRequest
impl Debug for DeleteDataScanRequest
Source§impl Default for DeleteDataScanRequest
impl Default for DeleteDataScanRequest
Source§fn default() -> DeleteDataScanRequest
fn default() -> DeleteDataScanRequest
Returns the “default value” for a type. Read more
Source§impl Message for DeleteDataScanRequest
impl Message for DeleteDataScanRequest
Source§impl PartialEq for DeleteDataScanRequest
impl PartialEq for DeleteDataScanRequest
impl StructuralPartialEq for DeleteDataScanRequest
Auto Trait Implementations§
impl Freeze for DeleteDataScanRequest
impl RefUnwindSafe for DeleteDataScanRequest
impl Send for DeleteDataScanRequest
impl Sync for DeleteDataScanRequest
impl Unpin for DeleteDataScanRequest
impl UnwindSafe for DeleteDataScanRequest
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