#[non_exhaustive]pub struct DeleteScanConfigRequest {
pub name: String,
/* private fields */
}Expand description
Request for the DeleteScanConfig method.
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 ScanConfig to be deleted. The name follows the format of ‘projects/{projectId}/scanConfigs/{scanConfigId}’.
Implementations§
Trait Implementations§
Source§impl Clone for DeleteScanConfigRequest
impl Clone for DeleteScanConfigRequest
Source§fn clone(&self) -> DeleteScanConfigRequest
fn clone(&self) -> DeleteScanConfigRequest
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 DeleteScanConfigRequest
impl Debug for DeleteScanConfigRequest
Source§impl Default for DeleteScanConfigRequest
impl Default for DeleteScanConfigRequest
Source§fn default() -> DeleteScanConfigRequest
fn default() -> DeleteScanConfigRequest
Returns the “default value” for a type. Read more
Source§impl Message for DeleteScanConfigRequest
impl Message for DeleteScanConfigRequest
Source§impl PartialEq for DeleteScanConfigRequest
impl PartialEq for DeleteScanConfigRequest
impl StructuralPartialEq for DeleteScanConfigRequest
Auto Trait Implementations§
impl Freeze for DeleteScanConfigRequest
impl RefUnwindSafe for DeleteScanConfigRequest
impl Send for DeleteScanConfigRequest
impl Sync for DeleteScanConfigRequest
impl Unpin for DeleteScanConfigRequest
impl UnwindSafe for DeleteScanConfigRequest
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