pub enum HiveDelimiter {
FieldsTerminatedBy,
FieldsEscapedBy,
CollectionItemsTerminatedBy,
MapKeysTerminatedBy,
LinesTerminatedBy,
NullDefinedAs,
}Expand description
Kind of delimiter used in Hive ROW FORMAT definitions.
Variants§
FieldsTerminatedBy
Fields terminated by a delimiter.
FieldsEscapedBy
Fields escaped by a character.
CollectionItemsTerminatedBy
Collection items terminated by a delimiter.
MapKeysTerminatedBy
Map keys terminated by a delimiter.
LinesTerminatedBy
Lines terminated by a delimiter.
NullDefinedAs
Null represented by a specific token.
Trait Implementations§
Source§impl Clone for HiveDelimiter
impl Clone for HiveDelimiter
Source§fn clone(&self) -> HiveDelimiter
fn clone(&self) -> HiveDelimiter
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 HiveDelimiter
impl Debug for HiveDelimiter
Source§impl Display for HiveDelimiter
impl Display for HiveDelimiter
Source§impl Hash for HiveDelimiter
impl Hash for HiveDelimiter
Source§impl Ord for HiveDelimiter
impl Ord for HiveDelimiter
Source§fn cmp(&self, other: &HiveDelimiter) -> Ordering
fn cmp(&self, other: &HiveDelimiter) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for HiveDelimiter
impl PartialEq for HiveDelimiter
Source§impl PartialOrd for HiveDelimiter
impl PartialOrd for HiveDelimiter
Source§impl Visit for HiveDelimiter
impl Visit for HiveDelimiter
Source§impl VisitMut for HiveDelimiter
impl VisitMut for HiveDelimiter
Source§fn visit<V: VisitorMut>(&mut self, visitor: &mut V) -> ControlFlow<V::Break>
fn visit<V: VisitorMut>(&mut self, visitor: &mut V) -> ControlFlow<V::Break>
Mutably visit this node with the provided
VisitorMut. Read moreimpl Copy for HiveDelimiter
impl Eq for HiveDelimiter
impl StructuralPartialEq for HiveDelimiter
Auto Trait Implementations§
impl Freeze for HiveDelimiter
impl RefUnwindSafe for HiveDelimiter
impl Send for HiveDelimiter
impl Sync for HiveDelimiter
impl Unpin for HiveDelimiter
impl UnsafeUnpin for HiveDelimiter
impl UnwindSafe for HiveDelimiter
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