pub struct Describe {
pub target: Expression,
pub extended: bool,
pub formatted: bool,
pub kind: Option<String>,
pub properties: Vec<(String, String)>,
pub style: Option<String>,
pub partition: Option<Box<Expression>>,
pub leading_comments: Vec<String>,
}Expand description
DESCRIBE statement - shows table structure or query plan
Fields§
§target: ExpressionThe target to describe (table name or query)
extended: boolEXTENDED format
formatted: boolFORMATTED format
kind: Option<String>Object kind (e.g., “SEMANTIC VIEW”, “TABLE”, etc.)
properties: Vec<(String, String)>Properties like type=stage
style: Option<String>Style keyword (e.g., “ANALYZE”, “HISTORY”)
partition: Option<Box<Expression>>Partition specification for DESCRIBE PARTITION
leading_comments: Vec<String>Leading comments before the statement
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Describe
impl<'de> Deserialize<'de> for Describe
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
impl StructuralPartialEq for Describe
Auto Trait Implementations§
impl Freeze for Describe
impl RefUnwindSafe for Describe
impl Send for Describe
impl Sync for Describe
impl Unpin for Describe
impl UnwindSafe for Describe
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