pub struct DirectoryInsert {
pub local: bool,
pub path: String,
pub row_format: Option<RowFormat>,
pub stored_as: Option<String>,
}Expand description
Directory insert for INSERT OVERWRITE DIRECTORY (Hive/Spark)
Fields§
§local: bool§path: String§row_format: Option<RowFormat>§stored_as: Option<String>STORED AS clause (e.g., TEXTFILE, ORC, PARQUET)
Trait Implementations§
Source§impl Clone for DirectoryInsert
impl Clone for DirectoryInsert
Source§fn clone(&self) -> DirectoryInsert
fn clone(&self) -> DirectoryInsert
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 DirectoryInsert
impl Debug for DirectoryInsert
Source§impl<'de> Deserialize<'de> for DirectoryInsert
impl<'de> Deserialize<'de> for DirectoryInsert
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 DirectoryInsert
impl PartialEq for DirectoryInsert
Source§impl Serialize for DirectoryInsert
impl Serialize for DirectoryInsert
impl StructuralPartialEq for DirectoryInsert
Auto Trait Implementations§
impl Freeze for DirectoryInsert
impl RefUnwindSafe for DirectoryInsert
impl Send for DirectoryInsert
impl Sync for DirectoryInsert
impl Unpin for DirectoryInsert
impl UnwindSafe for DirectoryInsert
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