pub struct OpenJSONColumnDef {
pub this: Box<Expression>,
pub kind: String,
pub path: Option<Box<Expression>>,
pub as_json: Option<Box<Expression>>,
pub data_type: Option<DataType>,
}Expand description
OpenJSONColumnDef
Fields§
§this: Box<Expression>§kind: String§path: Option<Box<Expression>>§as_json: Option<Box<Expression>>§data_type: Option<DataType>The parsed data type for proper generation
Trait Implementations§
Source§impl Clone for OpenJSONColumnDef
impl Clone for OpenJSONColumnDef
Source§fn clone(&self) -> OpenJSONColumnDef
fn clone(&self) -> OpenJSONColumnDef
Returns a duplicate 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 OpenJSONColumnDef
impl Debug for OpenJSONColumnDef
Source§impl<'de> Deserialize<'de> for OpenJSONColumnDef
impl<'de> Deserialize<'de> for OpenJSONColumnDef
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
Source§impl PartialEq for OpenJSONColumnDef
impl PartialEq for OpenJSONColumnDef
Source§impl Serialize for OpenJSONColumnDef
impl Serialize for OpenJSONColumnDef
impl StructuralPartialEq for OpenJSONColumnDef
Auto Trait Implementations§
impl Freeze for OpenJSONColumnDef
impl RefUnwindSafe for OpenJSONColumnDef
impl Send for OpenJSONColumnDef
impl Sync for OpenJSONColumnDef
impl Unpin for OpenJSONColumnDef
impl UnwindSafe for OpenJSONColumnDef
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