pub struct UpdateQueryRequest {
pub name: Option<String>,
pub query_sql: Option<String>,
pub description: Option<String>,
pub parameters: Option<Vec<Parameter>>,
pub tags: Option<Vec<String>>,
}Expand description
Request to update a query
Fields§
§name: Option<String>Query name
query_sql: Option<String>SQL query text
description: Option<String>Query description
parameters: Option<Vec<Parameter>>Query parameters
Tags
Trait Implementations§
Source§impl Clone for UpdateQueryRequest
impl Clone for UpdateQueryRequest
Source§fn clone(&self) -> UpdateQueryRequest
fn clone(&self) -> UpdateQueryRequest
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 UpdateQueryRequest
impl Debug for UpdateQueryRequest
Source§impl Default for UpdateQueryRequest
impl Default for UpdateQueryRequest
Source§fn default() -> UpdateQueryRequest
fn default() -> UpdateQueryRequest
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for UpdateQueryRequest
impl RefUnwindSafe for UpdateQueryRequest
impl Send for UpdateQueryRequest
impl Sync for UpdateQueryRequest
impl Unpin for UpdateQueryRequest
impl UnwindSafe for UpdateQueryRequest
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