pub enum DumpFormat {
Parquet,
Turtle,
Json,
}Expand description
Dump format for export operations.
Variants§
Parquet
Apache Parquet format (default for LPG).
Turtle
RDF Turtle format (default for RDF).
Json
JSON Lines format.
Trait Implementations§
Source§impl Clone for DumpFormat
impl Clone for DumpFormat
Source§fn clone(&self) -> DumpFormat
fn clone(&self) -> DumpFormat
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 DumpFormat
impl Debug for DumpFormat
Source§impl Default for DumpFormat
impl Default for DumpFormat
Source§impl<'de> Deserialize<'de> for DumpFormat
impl<'de> Deserialize<'de> for DumpFormat
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 Display for DumpFormat
impl Display for DumpFormat
Source§impl FromStr for DumpFormat
impl FromStr for DumpFormat
Source§impl PartialEq for DumpFormat
impl PartialEq for DumpFormat
Source§impl Serialize for DumpFormat
impl Serialize for DumpFormat
impl Copy for DumpFormat
impl Eq for DumpFormat
impl StructuralPartialEq for DumpFormat
Auto Trait Implementations§
impl Freeze for DumpFormat
impl RefUnwindSafe for DumpFormat
impl Send for DumpFormat
impl Sync for DumpFormat
impl Unpin for DumpFormat
impl UnwindSafe for DumpFormat
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.