pub enum PdfSource {
ZoteroLocal {
path: String,
},
ZoteroRemote {
item_key: String,
},
DirectUrl {
url: String,
},
OpenAlexContent,
DataLab,
}Expand description
Where the PDF was obtained from.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PdfSource
impl RefUnwindSafe for PdfSource
impl Send for PdfSource
impl Sync for PdfSource
impl Unpin for PdfSource
impl UnsafeUnpin for PdfSource
impl UnwindSafe for PdfSource
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