#[non_exhaustive]pub struct DeleteViewRequest {
pub name: String,
/* private fields */
}Expand description
The parameters to DeleteView.
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 full resource name of the view to delete:
"projects/[PROJECT_ID]/locations/[LOCATION_ID]/buckets/[BUCKET_ID]/views/[VIEW_ID]"For example:
"projects/my-project/locations/global/buckets/my-bucket/views/my-view"
Implementations§
Trait Implementations§
Source§impl Clone for DeleteViewRequest
impl Clone for DeleteViewRequest
Source§fn clone(&self) -> DeleteViewRequest
fn clone(&self) -> DeleteViewRequest
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 DeleteViewRequest
impl Debug for DeleteViewRequest
Source§impl Default for DeleteViewRequest
impl Default for DeleteViewRequest
Source§fn default() -> DeleteViewRequest
fn default() -> DeleteViewRequest
Returns the “default value” for a type. Read more
Source§impl Message for DeleteViewRequest
impl Message for DeleteViewRequest
Source§impl PartialEq for DeleteViewRequest
impl PartialEq for DeleteViewRequest
impl StructuralPartialEq for DeleteViewRequest
Auto Trait Implementations§
impl Freeze for DeleteViewRequest
impl RefUnwindSafe for DeleteViewRequest
impl Send for DeleteViewRequest
impl Sync for DeleteViewRequest
impl Unpin for DeleteViewRequest
impl UnwindSafe for DeleteViewRequest
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