#[non_exhaustive]pub struct SqlInstancesExecuteSqlRequest {
pub instance: String,
pub project: String,
pub body: Option<ExecuteSqlPayload>,
/* private fields */
}Expand description
Execute SQL statements 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.instance: StringRequired. Database instance ID. This does not include the project ID.
project: StringRequired. Project ID of the project that contains the instance.
body: Option<ExecuteSqlPayload>The request body.
Implementations§
Source§impl SqlInstancesExecuteSqlRequest
impl SqlInstancesExecuteSqlRequest
pub fn new() -> Self
Sourcepub fn set_instance<T: Into<String>>(self, v: T) -> Self
pub fn set_instance<T: Into<String>>(self, v: T) -> Self
Sourcepub fn set_project<T: Into<String>>(self, v: T) -> Self
pub fn set_project<T: Into<String>>(self, v: T) -> Self
Sourcepub fn set_body<T>(self, v: T) -> Selfwhere
T: Into<ExecuteSqlPayload>,
pub fn set_body<T>(self, v: T) -> Selfwhere
T: Into<ExecuteSqlPayload>,
Sourcepub fn set_or_clear_body<T>(self, v: Option<T>) -> Selfwhere
T: Into<ExecuteSqlPayload>,
pub fn set_or_clear_body<T>(self, v: Option<T>) -> Selfwhere
T: Into<ExecuteSqlPayload>,
Sets or clears the value of body.
§Example
ⓘ
use google_cloud_sql_v1::model::ExecuteSqlPayload;
let x = SqlInstancesExecuteSqlRequest::new().set_or_clear_body(Some(ExecuteSqlPayload::default()/* use setters */));
let x = SqlInstancesExecuteSqlRequest::new().set_or_clear_body(None::<ExecuteSqlPayload>);Trait Implementations§
Source§impl Clone for SqlInstancesExecuteSqlRequest
impl Clone for SqlInstancesExecuteSqlRequest
Source§fn clone(&self) -> SqlInstancesExecuteSqlRequest
fn clone(&self) -> SqlInstancesExecuteSqlRequest
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 Default for SqlInstancesExecuteSqlRequest
impl Default for SqlInstancesExecuteSqlRequest
Source§fn default() -> SqlInstancesExecuteSqlRequest
fn default() -> SqlInstancesExecuteSqlRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for SqlInstancesExecuteSqlRequest
impl PartialEq for SqlInstancesExecuteSqlRequest
Source§fn eq(&self, other: &SqlInstancesExecuteSqlRequest) -> bool
fn eq(&self, other: &SqlInstancesExecuteSqlRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SqlInstancesExecuteSqlRequest
Auto Trait Implementations§
impl Freeze for SqlInstancesExecuteSqlRequest
impl RefUnwindSafe for SqlInstancesExecuteSqlRequest
impl Send for SqlInstancesExecuteSqlRequest
impl Sync for SqlInstancesExecuteSqlRequest
impl Unpin for SqlInstancesExecuteSqlRequest
impl UnwindSafe for SqlInstancesExecuteSqlRequest
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