#[non_exhaustive]pub struct SqlOperationsCancelRequest {
pub operation: String,
pub project: String,
/* private fields */
}
Expand description
Operations cancel 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.operation: String
Instance operation ID.
project: String
Project ID of the project that contains the instance.
Implementations§
Trait Implementations§
Source§impl Clone for SqlOperationsCancelRequest
impl Clone for SqlOperationsCancelRequest
Source§fn clone(&self) -> SqlOperationsCancelRequest
fn clone(&self) -> SqlOperationsCancelRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for SqlOperationsCancelRequest
impl Debug for SqlOperationsCancelRequest
Source§impl Default for SqlOperationsCancelRequest
impl Default for SqlOperationsCancelRequest
Source§fn default() -> SqlOperationsCancelRequest
fn default() -> SqlOperationsCancelRequest
Returns the “default value” for a type. Read more
Source§impl Message for SqlOperationsCancelRequest
impl Message for SqlOperationsCancelRequest
impl StructuralPartialEq for SqlOperationsCancelRequest
Auto Trait Implementations§
impl Freeze for SqlOperationsCancelRequest
impl RefUnwindSafe for SqlOperationsCancelRequest
impl Send for SqlOperationsCancelRequest
impl Sync for SqlOperationsCancelRequest
impl Unpin for SqlOperationsCancelRequest
impl UnwindSafe for SqlOperationsCancelRequest
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