#[non_exhaustive]pub struct DeleteRequest {
pub operation: String,
pub project: String,
pub zone: String,
/* private fields */
}Available on (crate features
autoscalers or disks or future-reservations or instance-group-manager-resize-requests or instance-group-managers or instance-groups or instance-settings or instances or instant-snapshots or network-endpoint-groups or node-groups or reservation-blocks or reservation-slots or reservation-sub-blocks or reservations or storage-pools or target-instances or zone-operations) and crate feature zone-operations only.Expand description
Synthetic request message for the delete() 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.operation: StringName of the Operations resource to delete, or its unique numeric identifier.
project: StringProject ID for this request.
zone: StringName of the zone for this request.
Implementations§
Source§impl DeleteRequest
impl DeleteRequest
pub fn new() -> Self
Sourcepub fn set_operation<T: Into<String>>(self, v: T) -> Self
pub fn set_operation<T: Into<String>>(self, v: T) -> Self
Sourcepub fn set_project<T: Into<String>>(self, v: T) -> Self
pub fn set_project<T: Into<String>>(self, v: T) -> Self
Trait Implementations§
Source§impl Clone for DeleteRequest
impl Clone for DeleteRequest
Source§fn clone(&self) -> DeleteRequest
fn clone(&self) -> DeleteRequest
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 DeleteRequest
impl Debug for DeleteRequest
Source§impl Default for DeleteRequest
impl Default for DeleteRequest
Source§fn default() -> DeleteRequest
fn default() -> DeleteRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DeleteRequest
impl PartialEq for DeleteRequest
impl StructuralPartialEq for DeleteRequest
Auto Trait Implementations§
impl Freeze for DeleteRequest
impl RefUnwindSafe for DeleteRequest
impl Send for DeleteRequest
impl Sync for DeleteRequest
impl Unpin for DeleteRequest
impl UnwindSafe for DeleteRequest
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