pub enum JsonTableCol {
Named {
name: String,
ty: DataType,
path: String,
exists: bool,
},
Ordinality {
name: String,
},
Nested {
path: String,
columns: Vec<JsonTableCol>,
},
}Variants§
Trait Implementations§
Source§impl Clone for JsonTableCol
impl Clone for JsonTableCol
Source§fn clone(&self) -> JsonTableCol
fn clone(&self) -> JsonTableCol
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 moreAuto Trait Implementations§
impl Freeze for JsonTableCol
impl RefUnwindSafe for JsonTableCol
impl Send for JsonTableCol
impl Sync for JsonTableCol
impl Unpin for JsonTableCol
impl UnsafeUnpin for JsonTableCol
impl UnwindSafe for JsonTableCol
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