#[non_exhaustive]pub struct DeleteSavedQueryRequest {
pub name: String,
/* private fields */
}Expand description
Request to delete a saved query.
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 name of the saved query to delete. It must be in the format of:
- projects/project_number/savedQueries/saved_query_id
- folders/folder_number/savedQueries/saved_query_id
- organizations/organization_number/savedQueries/saved_query_id
Implementations§
Trait Implementations§
Source§impl Clone for DeleteSavedQueryRequest
impl Clone for DeleteSavedQueryRequest
Source§fn clone(&self) -> DeleteSavedQueryRequest
fn clone(&self) -> DeleteSavedQueryRequest
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 DeleteSavedQueryRequest
impl Debug for DeleteSavedQueryRequest
Source§impl Default for DeleteSavedQueryRequest
impl Default for DeleteSavedQueryRequest
Source§fn default() -> DeleteSavedQueryRequest
fn default() -> DeleteSavedQueryRequest
Returns the “default value” for a type. Read more
Source§impl Message for DeleteSavedQueryRequest
impl Message for DeleteSavedQueryRequest
Source§impl PartialEq for DeleteSavedQueryRequest
impl PartialEq for DeleteSavedQueryRequest
impl StructuralPartialEq for DeleteSavedQueryRequest
Auto Trait Implementations§
impl Freeze for DeleteSavedQueryRequest
impl RefUnwindSafe for DeleteSavedQueryRequest
impl Send for DeleteSavedQueryRequest
impl Sync for DeleteSavedQueryRequest
impl Unpin for DeleteSavedQueryRequest
impl UnwindSafe for DeleteSavedQueryRequest
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