pub enum SqlDescribeOutput {
Compact {
entity: String,
columns: Vec<SqlColumnSummary>,
},
Verbose {
description: EntitySchemaDescription,
},
}Expand description
Discriminated public DESCRIBE result.
Variants§
Compact
Conventional compact column table.
Fields
§
columns: Vec<SqlColumnSummary>Canonical compact column rows.
Verbose
Complete maintained operational dossier.
Fields
§
description: EntitySchemaDescriptionComplete accepted entity description.
Trait Implementations§
Source§impl CandidType for SqlDescribeOutput
impl CandidType for SqlDescribeOutput
Source§impl Clone for SqlDescribeOutput
impl Clone for SqlDescribeOutput
Source§fn clone(&self) -> SqlDescribeOutput
fn clone(&self) -> SqlDescribeOutput
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 SqlDescribeOutput
impl Debug for SqlDescribeOutput
Source§impl<'de> Deserialize<'de> for SqlDescribeOutput
impl<'de> Deserialize<'de> for SqlDescribeOutput
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 Eq for SqlDescribeOutput
Source§impl PartialEq for SqlDescribeOutput
impl PartialEq for SqlDescribeOutput
impl StructuralPartialEq for SqlDescribeOutput
Auto Trait Implementations§
impl Freeze for SqlDescribeOutput
impl RefUnwindSafe for SqlDescribeOutput
impl Send for SqlDescribeOutput
impl Sync for SqlDescribeOutput
impl Unpin for SqlDescribeOutput
impl UnsafeUnpin for SqlDescribeOutput
impl UnwindSafe for SqlDescribeOutput
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