#[non_exhaustive]pub struct DeleteCustomerRequest {
pub name: String,
/* private fields */
}Expand description
Message for deleting customer
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. name of the resource to be deleted format: name=organizations//locations//customers/*
Implementations§
Trait Implementations§
Source§impl Clone for DeleteCustomerRequest
impl Clone for DeleteCustomerRequest
Source§fn clone(&self) -> DeleteCustomerRequest
fn clone(&self) -> DeleteCustomerRequest
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 DeleteCustomerRequest
impl Debug for DeleteCustomerRequest
Source§impl Default for DeleteCustomerRequest
impl Default for DeleteCustomerRequest
Source§fn default() -> DeleteCustomerRequest
fn default() -> DeleteCustomerRequest
Returns the “default value” for a type. Read more
Source§impl Message for DeleteCustomerRequest
impl Message for DeleteCustomerRequest
Source§impl PartialEq for DeleteCustomerRequest
impl PartialEq for DeleteCustomerRequest
impl StructuralPartialEq for DeleteCustomerRequest
Auto Trait Implementations§
impl Freeze for DeleteCustomerRequest
impl RefUnwindSafe for DeleteCustomerRequest
impl Send for DeleteCustomerRequest
impl Sync for DeleteCustomerRequest
impl Unpin for DeleteCustomerRequest
impl UnwindSafe for DeleteCustomerRequest
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