#[non_exhaustive]pub struct SqlOperationsGetRequest {
pub operation: String,
pub project: String,
/* private fields */
}
Expand description
Operations get 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 SqlOperationsGetRequest
impl Clone for SqlOperationsGetRequest
Source§fn clone(&self) -> SqlOperationsGetRequest
fn clone(&self) -> SqlOperationsGetRequest
Returns a copy 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 SqlOperationsGetRequest
impl Debug for SqlOperationsGetRequest
Source§impl Default for SqlOperationsGetRequest
impl Default for SqlOperationsGetRequest
Source§fn default() -> SqlOperationsGetRequest
fn default() -> SqlOperationsGetRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SqlOperationsGetRequestwhere
SqlOperationsGetRequest: Default,
impl<'de> Deserialize<'de> for SqlOperationsGetRequestwhere
SqlOperationsGetRequest: Default,
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Message for SqlOperationsGetRequest
impl Message for SqlOperationsGetRequest
Source§impl PartialEq for SqlOperationsGetRequest
impl PartialEq for SqlOperationsGetRequest
Source§impl Serialize for SqlOperationsGetRequest
impl Serialize for SqlOperationsGetRequest
impl StructuralPartialEq for SqlOperationsGetRequest
Auto Trait Implementations§
impl Freeze for SqlOperationsGetRequest
impl RefUnwindSafe for SqlOperationsGetRequest
impl Send for SqlOperationsGetRequest
impl Sync for SqlOperationsGetRequest
impl Unpin for SqlOperationsGetRequest
impl UnwindSafe for SqlOperationsGetRequest
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