pub struct AnalyzeQueryOptions {
pub dialect: DialectType,
pub schema: Option<ValidationSchema>,
}Expand description
Options for analyze_query.
Fields§
§dialect: DialectTypeSQL dialect used for parsing and dialect-aware rendering.
schema: Option<ValidationSchema>Optional validation schema used for qualification and type annotation.
Trait Implementations§
Source§impl Clone for AnalyzeQueryOptions
impl Clone for AnalyzeQueryOptions
Source§fn clone(&self) -> AnalyzeQueryOptions
fn clone(&self) -> AnalyzeQueryOptions
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AnalyzeQueryOptions
impl Debug for AnalyzeQueryOptions
Source§impl Default for AnalyzeQueryOptions
impl Default for AnalyzeQueryOptions
Source§fn default() -> AnalyzeQueryOptions
fn default() -> AnalyzeQueryOptions
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AnalyzeQueryOptionswhere
AnalyzeQueryOptions: Default,
impl<'de> Deserialize<'de> for AnalyzeQueryOptionswhere
AnalyzeQueryOptions: 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
Auto Trait Implementations§
impl Freeze for AnalyzeQueryOptions
impl RefUnwindSafe for AnalyzeQueryOptions
impl Send for AnalyzeQueryOptions
impl Sync for AnalyzeQueryOptions
impl Unpin for AnalyzeQueryOptions
impl UnsafeUnpin for AnalyzeQueryOptions
impl UnwindSafe for AnalyzeQueryOptions
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