pub struct MissingAttachment {
pub source_title: String,
pub source_id: PageId,
pub target: String,
pub resolved_path: PathBuf,
}Expand description
An attachment reference that points to a file not found on disk.
Fields§
§source_title: StringTitle of the page referencing the attachment.
source_id: PageIdId of the page referencing the attachment.
target: StringThe raw attachment target string from the page content.
resolved_path: PathBufThe resolved path that was not found.
Trait Implementations§
Source§impl Clone for MissingAttachment
impl Clone for MissingAttachment
Source§fn clone(&self) -> MissingAttachment
fn clone(&self) -> MissingAttachment
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 MissingAttachment
impl RefUnwindSafe for MissingAttachment
impl Send for MissingAttachment
impl Sync for MissingAttachment
impl Unpin for MissingAttachment
impl UnsafeUnpin for MissingAttachment
impl UnwindSafe for MissingAttachment
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