pub struct ResolvedAttachment {
pub path: PathBuf,
pub exists: bool,
}Expand description
Resolved attachment target.
Fields§
§path: PathBufFull path to the attachment.
exists: boolWhether the attachment exists on disk.
Trait Implementations§
Source§impl Clone for ResolvedAttachment
impl Clone for ResolvedAttachment
Source§fn clone(&self) -> ResolvedAttachment
fn clone(&self) -> ResolvedAttachment
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 ResolvedAttachment
impl Debug for ResolvedAttachment
Source§impl PartialEq for ResolvedAttachment
impl PartialEq for ResolvedAttachment
impl Eq for ResolvedAttachment
impl StructuralPartialEq for ResolvedAttachment
Auto Trait Implementations§
impl Freeze for ResolvedAttachment
impl RefUnwindSafe for ResolvedAttachment
impl Send for ResolvedAttachment
impl Sync for ResolvedAttachment
impl Unpin for ResolvedAttachment
impl UnsafeUnpin for ResolvedAttachment
impl UnwindSafe for ResolvedAttachment
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