pub struct FileDetectionResult {
pub adapter_name: String,
pub priority: u32,
pub file_path: PathBuf,
}Expand description
File detection result
Fields§
§adapter_name: StringName of the adapter that can handle this file
priority: u32Priority of the adapter
file_path: PathBufPath to the detected file
Trait Implementations§
Source§impl Clone for FileDetectionResult
impl Clone for FileDetectionResult
Source§fn clone(&self) -> FileDetectionResult
fn clone(&self) -> FileDetectionResult
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 moreAuto Trait Implementations§
impl Freeze for FileDetectionResult
impl RefUnwindSafe for FileDetectionResult
impl Send for FileDetectionResult
impl Sync for FileDetectionResult
impl Unpin for FileDetectionResult
impl UnwindSafe for FileDetectionResult
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