pub enum DetectedFormat {
PlainText,
Docx,
Pdf,
Html,
Xlsx,
Pptx,
Email,
Unknown(String),
}Variants§
Trait Implementations§
Source§impl Clone for DetectedFormat
impl Clone for DetectedFormat
Source§fn clone(&self) -> DetectedFormat
fn clone(&self) -> DetectedFormat
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 DetectedFormat
impl Debug for DetectedFormat
Source§impl PartialEq for DetectedFormat
impl PartialEq for DetectedFormat
impl Eq for DetectedFormat
impl StructuralPartialEq for DetectedFormat
Auto Trait Implementations§
impl Freeze for DetectedFormat
impl RefUnwindSafe for DetectedFormat
impl Send for DetectedFormat
impl Sync for DetectedFormat
impl Unpin for DetectedFormat
impl UnsafeUnpin for DetectedFormat
impl UnwindSafe for DetectedFormat
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