pub struct JSONTable {
pub this: Box<Expression>,
pub schema: Option<Box<Expression>>,
pub path: Option<Box<Expression>>,
pub error_handling: Option<Box<Expression>>,
pub empty_handling: Option<Box<Expression>>,
}Expand description
JSONTable
Fields§
§this: Box<Expression>§schema: Option<Box<Expression>>§path: Option<Box<Expression>>§error_handling: Option<Box<Expression>>§empty_handling: Option<Box<Expression>>Trait Implementations§
Source§impl<'de> Deserialize<'de> for JSONTable
impl<'de> Deserialize<'de> for JSONTable
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 JSONTable
Auto Trait Implementations§
impl Freeze for JSONTable
impl RefUnwindSafe for JSONTable
impl Send for JSONTable
impl Sync for JSONTable
impl Unpin for JSONTable
impl UnwindSafe for JSONTable
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