pub struct SqlQueryParameterOutput {
pub name: String,
pub typ: QueryIntrospectionType,
pub documentation: Option<String>,
pub nullable: bool,
}Fields§
§name: String§typ: QueryIntrospectionType§documentation: Option<String>§nullable: boolTrait Implementations§
Source§impl Clone for SqlQueryParameterOutput
impl Clone for SqlQueryParameterOutput
Source§fn clone(&self) -> SqlQueryParameterOutput
fn clone(&self) -> SqlQueryParameterOutput
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 SqlQueryParameterOutput
impl Debug for SqlQueryParameterOutput
Source§impl<'de> Deserialize<'de> for SqlQueryParameterOutput
impl<'de> Deserialize<'de> for SqlQueryParameterOutput
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
Auto Trait Implementations§
impl Freeze for SqlQueryParameterOutput
impl RefUnwindSafe for SqlQueryParameterOutput
impl Send for SqlQueryParameterOutput
impl Sync for SqlQueryParameterOutput
impl Unpin for SqlQueryParameterOutput
impl UnwindSafe for SqlQueryParameterOutput
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