pub struct InputSerialization {
pub csv: Option<CSVInput>,
pub compression_type: Option<CompressionType>,
pub json: Option<JSONInput>,
pub parquet: Option<ParquetInput>,
}Fields§
§csv: Option<CSVInput>§compression_type: Option<CompressionType>§json: Option<JSONInput>§parquet: Option<ParquetInput>Trait Implementations§
Source§impl Debug for InputSerialization
impl Debug for InputSerialization
Source§impl Default for InputSerialization
impl Default for InputSerialization
Source§fn default() -> InputSerialization
fn default() -> InputSerialization
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InputSerialization
impl<'de> Deserialize<'de> for InputSerialization
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
Auto Trait Implementations§
impl Freeze for InputSerialization
impl RefUnwindSafe for InputSerialization
impl Send for InputSerialization
impl Sync for InputSerialization
impl Unpin for InputSerialization
impl UnwindSafe for InputSerialization
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