pub struct FileTypeDetectionResult {
pub file_type: String,
pub format: String,
pub mime_type: String,
pub description: String,
}
Fields§
§file_type: String
Detected file type (e.g., “JPEG”, “PNG”, “CR2”)
format: String
Primary format for processing (e.g., “JPEG”, “TIFF”, “MOV”)
mime_type: String
MIME type string
description: String
Human-readable description
Trait Implementations§
Source§impl Clone for FileTypeDetectionResult
impl Clone for FileTypeDetectionResult
Source§fn clone(&self) -> FileTypeDetectionResult
fn clone(&self) -> FileTypeDetectionResult
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 FileTypeDetectionResult
impl Debug for FileTypeDetectionResult
Source§impl PartialEq for FileTypeDetectionResult
impl PartialEq for FileTypeDetectionResult
impl StructuralPartialEq for FileTypeDetectionResult
Auto Trait Implementations§
impl Freeze for FileTypeDetectionResult
impl RefUnwindSafe for FileTypeDetectionResult
impl Send for FileTypeDetectionResult
impl Sync for FileTypeDetectionResult
impl Unpin for FileTypeDetectionResult
impl UnwindSafe for FileTypeDetectionResult
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