#[non_exhaustive]pub struct SqlBackupRunsDeleteRequest {
pub id: i64,
pub instance: String,
pub project: String,
/* private fields */
}
Expand description
Backup runs delete request.
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.id: i64
The ID of the backup run to delete. To find a backup run ID, use the list method.
instance: String
Cloud SQL instance ID. This does not include the project ID.
project: String
Project ID of the project that contains the instance.
Implementations§
Trait Implementations§
Source§impl Clone for SqlBackupRunsDeleteRequest
impl Clone for SqlBackupRunsDeleteRequest
Source§fn clone(&self) -> SqlBackupRunsDeleteRequest
fn clone(&self) -> SqlBackupRunsDeleteRequest
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 SqlBackupRunsDeleteRequest
impl Debug for SqlBackupRunsDeleteRequest
Source§impl Default for SqlBackupRunsDeleteRequest
impl Default for SqlBackupRunsDeleteRequest
Source§fn default() -> SqlBackupRunsDeleteRequest
fn default() -> SqlBackupRunsDeleteRequest
Returns the “default value” for a type. Read more
Source§impl Message for SqlBackupRunsDeleteRequest
impl Message for SqlBackupRunsDeleteRequest
impl StructuralPartialEq for SqlBackupRunsDeleteRequest
Auto Trait Implementations§
impl Freeze for SqlBackupRunsDeleteRequest
impl RefUnwindSafe for SqlBackupRunsDeleteRequest
impl Send for SqlBackupRunsDeleteRequest
impl Sync for SqlBackupRunsDeleteRequest
impl Unpin for SqlBackupRunsDeleteRequest
impl UnwindSafe for SqlBackupRunsDeleteRequest
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