pub struct RowFormat {
pub delimited: bool,
pub fields_terminated_by: Option<String>,
pub collection_items_terminated_by: Option<String>,
pub map_keys_terminated_by: Option<String>,
pub lines_terminated_by: Option<String>,
pub null_defined_as: Option<String>,
}Expand description
ROW FORMAT clause for Hive/Spark
Fields§
§delimited: bool§fields_terminated_by: Option<String>§collection_items_terminated_by: Option<String>§map_keys_terminated_by: Option<String>§lines_terminated_by: Option<String>§null_defined_as: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for RowFormat
impl<'de> Deserialize<'de> for RowFormat
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 RowFormat
Auto Trait Implementations§
impl Freeze for RowFormat
impl RefUnwindSafe for RowFormat
impl Send for RowFormat
impl Sync for RowFormat
impl Unpin for RowFormat
impl UnwindSafe for RowFormat
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