pub struct Attachment {
pub item_key: String,
pub content_type: String,
pub path: Option<String>,
pub title: Option<String>,
pub storage_hash: Option<String>,
}Fields§
§item_key: String§content_type: String§path: Option<String>§title: Option<String>§storage_hash: Option<String>MD5 content hash computed by Zotero on import. Exposes a content-identity primitive for external tools (deduplication, verification, linking) without Biblion needing to know about consumers.
Trait Implementations§
Source§impl Clone for Attachment
impl Clone for Attachment
Source§fn clone(&self) -> Attachment
fn clone(&self) -> Attachment
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 Attachment
impl RefUnwindSafe for Attachment
impl Send for Attachment
impl Sync for Attachment
impl Unpin for Attachment
impl UnwindSafe for Attachment
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