pub struct Metadata {
pub title: Option<String>,
pub author: Option<String>,
pub subject: Option<String>,
pub keywords: Option<String>,
pub creator: Option<String>,
pub producer: Option<String>,
pub creation_date: Option<Date>,
pub modification_date: Option<Date>,
}Expand description
Document information written to the /Info dictionary. Every field is
optional; an all-None value writes no dictionary at all.
Fields§
§title: Option<String>/Title.
/Author.
subject: Option<String>/Subject.
keywords: Option<String>/Keywords.
creator: Option<String>/Creator (the producing application’s name).
producer: Option<String>/Producer.
creation_date: Option<Date>/CreationDate.
modification_date: Option<Date>/ModDate.
Trait Implementations§
impl StructuralPartialEq for Metadata
Auto Trait Implementations§
impl Freeze for Metadata
impl RefUnwindSafe for Metadata
impl Send for Metadata
impl Sync for Metadata
impl Unpin for Metadata
impl UnsafeUnpin for Metadata
impl UnwindSafe for Metadata
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