Enum datafusion::common::FileType
source · pub enum FileType {
ARROW,
AVRO,
PARQUET,
CSV,
JSON,
}
Expand description
Readable file type
Variants§
ARROW
Apache Arrow file
AVRO
Apache Avro file
PARQUET
Apache Parquet file
CSV
CSV file
JSON
JSON file
Implementations§
source§impl FileType
impl FileType
sourcepub fn get_ext_with_compression(
&self,
c: FileCompressionType
) -> Result<String, DataFusionError>
pub fn get_ext_with_compression( &self, c: FileCompressionType ) -> Result<String, DataFusionError>
Given a FileCompressionType
, return the FileType
’s extension with compression suffix
Trait Implementations§
source§impl PartialEq<FileType> for FileType
impl PartialEq<FileType> for FileType
impl Eq for FileType
impl StructuralEq for FileType
impl StructuralPartialEq for FileType
Auto Trait Implementations§
impl RefUnwindSafe for FileType
impl Send for FileType
impl Sync for FileType
impl Unpin for FileType
impl UnwindSafe for FileType
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
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.