#[non_exhaustive]pub struct DeleteControlRequest {
pub name: String,
/* private fields */
}Available on crate feature
control-service only.Expand description
Request for DeleteControl 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 Control to delete. Format:
projects/{project}/locations/{location}/collections/{collection_id}/dataStores/{data_store_id}/controls/{control_id}
Implementations§
Trait Implementations§
Source§impl Clone for DeleteControlRequest
impl Clone for DeleteControlRequest
Source§fn clone(&self) -> DeleteControlRequest
fn clone(&self) -> DeleteControlRequest
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 DeleteControlRequest
impl Debug for DeleteControlRequest
Source§impl Default for DeleteControlRequest
impl Default for DeleteControlRequest
Source§fn default() -> DeleteControlRequest
fn default() -> DeleteControlRequest
Returns the “default value” for a type. Read more
Source§impl Message for DeleteControlRequest
impl Message for DeleteControlRequest
Source§impl PartialEq for DeleteControlRequest
impl PartialEq for DeleteControlRequest
impl StructuralPartialEq for DeleteControlRequest
Auto Trait Implementations§
impl Freeze for DeleteControlRequest
impl RefUnwindSafe for DeleteControlRequest
impl Send for DeleteControlRequest
impl Sync for DeleteControlRequest
impl Unpin for DeleteControlRequest
impl UnwindSafe for DeleteControlRequest
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