pub enum FileParseSyncFileType {
Show 28 variants
WPS,
PDF,
DOCX,
DOC,
XLS,
XLSX,
PPT,
PPTX,
PNG,
JPG,
JPEG,
CSV,
TXT,
MD,
HTML,
BMP,
GIF,
WEBP,
HEIC,
EPS,
ICNS,
IM,
PCX,
PPM,
TIFF,
XBM,
HEIF,
JP2,
}Expand description
Optional file type accepted by the synchronous prime-sync parser.
Variants§
WPS
WPS document.
PDF document.
DOCX
Office Open XML Word document.
DOC
Legacy Word document.
XLS
Legacy Excel workbook.
XLSX
Office Open XML Excel workbook.
PPT
Legacy PowerPoint presentation.
PPTX
Office Open XML PowerPoint presentation.
PNG
PNG image.
JPG
JPG image.
JPEG
JPEG image.
CSV
Comma-separated values file.
TXT
Plain-text file.
MD
Markdown file.
HTML
HTML file.
BMP
Bitmap image.
GIF
GIF image.
WEBP
WebP image.
HEIC
HEIC image.
EPS
Encapsulated PostScript file.
ICNS
Apple icon file.
IM
ImageMagick image.
PCX
PCX image.
PPM
Portable pixmap image.
TIFF
TIFF image.
XBM
X bitmap image.
HEIF
HEIF image.
JP2
JPEG 2000 image.
Implementations§
Trait Implementations§
Source§impl Clone for FileParseSyncFileType
impl Clone for FileParseSyncFileType
Source§fn clone(&self) -> FileParseSyncFileType
fn clone(&self) -> FileParseSyncFileType
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for FileParseSyncFileType
Source§impl Debug for FileParseSyncFileType
impl Debug for FileParseSyncFileType
Source§impl<'de> Deserialize<'de> for FileParseSyncFileType
impl<'de> Deserialize<'de> for FileParseSyncFileType
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 Eq for FileParseSyncFileType
Source§impl Hash for FileParseSyncFileType
impl Hash for FileParseSyncFileType
Source§impl PartialEq for FileParseSyncFileType
impl PartialEq for FileParseSyncFileType
Source§impl Serialize for FileParseSyncFileType
impl Serialize for FileParseSyncFileType
impl StructuralPartialEq for FileParseSyncFileType
Auto Trait Implementations§
impl Freeze for FileParseSyncFileType
impl RefUnwindSafe for FileParseSyncFileType
impl Send for FileParseSyncFileType
impl Sync for FileParseSyncFileType
impl Unpin for FileParseSyncFileType
impl UnsafeUnpin for FileParseSyncFileType
impl UnwindSafe for FileParseSyncFileType
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<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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.