Struct stitchy_core::FilePathWithMetadata
source · pub struct FilePathWithMetadata { /* private fields */ }
Expand description
Types used for loading files and passing them into the image stitching process Wrapper for file metadata. Loading these properties for a file does not require actually reading, let alone parsing, the file’s contents.
Trait Implementations§
source§impl Debug for FilePathWithMetadata
impl Debug for FilePathWithMetadata
source§impl Default for FilePathWithMetadata
impl Default for FilePathWithMetadata
source§impl FileLocation<FilePathWithMetadata> for FilePath
impl FileLocation<FilePathWithMetadata> for FilePath
source§impl FileProperties for FilePathWithMetadata
impl FileProperties for FilePathWithMetadata
fn infer_format(&self) -> Option<ImageFormat>
fn into_image_contents(self, print_info: bool) -> Result<DynamicImage, String>
fn file_size(&self) -> u64
fn modify_time(&self) -> SystemTime
fn full_path(&self) -> Option<&String>
Auto Trait Implementations§
impl RefUnwindSafe for FilePathWithMetadata
impl Send for FilePathWithMetadata
impl Sync for FilePathWithMetadata
impl Unpin for FilePathWithMetadata
impl UnwindSafe for FilePathWithMetadata
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