pub struct Info {
pub title: Option<PdfString>,
pub author: Option<PdfString>,
pub subject: Option<PdfString>,
pub keywords: Option<PdfString>,
pub creator: Option<PdfString>,
pub producer: Option<PdfString>,
pub creation_date: Option<DateTime<Local>>,
pub mod_date: Option<DateTime<Local>>,
pub trapped: Option<Trapped>,
}Expand description
The Metadata/Info
Fields§
§title: Option<PdfString>The title
The author
subject: Option<PdfString>The subject
keywords: Option<PdfString>A list of keywords
creator: Option<PdfString>The program used to create the source
producer: Option<PdfString>The program that produced the file (this library)
creation_date: Option<DateTime<Local>>The date of creation
mod_date: Option<DateTime<Local>>The date of the last modification
trapped: Option<Trapped>Whether the PDF is trapped
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Info
impl RefUnwindSafe for Info
impl Send for Info
impl Sync for Info
impl Unpin for Info
impl UnwindSafe for Info
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