pub struct ExtractionResult {
pub html_path: PathBuf,
pub attachments: Vec<ExtractedAttachment>,
pub html_modified: bool,
}Expand description
Result of extracting attachments from an HTML file.
Fields§
§html_path: PathBufThe HTML file that was processed.
attachments: Vec<ExtractedAttachment>The attachments that were extracted.
html_modified: boolWhether the HTML file was modified.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ExtractionResult
impl RefUnwindSafe for ExtractionResult
impl Send for ExtractionResult
impl Sync for ExtractionResult
impl Unpin for ExtractionResult
impl UnwindSafe for ExtractionResult
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