pub struct Metadata {
pub creation_date: Option<DateTime>,
pub modification_date: Option<DateTime>,
pub title: Option<Vec<u8>>,
pub author: Option<Vec<u8>>,
pub subject: Option<Vec<u8>>,
pub keywords: Option<Vec<u8>>,
pub creator: Option<Vec<u8>>,
pub producer: Option<Vec<u8>>,
}Expand description
The metadata of a PDF document.
Fields§
§creation_date: Option<DateTime>The creation date of the document.
modification_date: Option<DateTime>The modification date of the document.
title: Option<Vec<u8>>The title of the document.
In the vast majority of cases, this is going to be an ASCII string, but it doesn’t have to be.
The author of the document.
In the vast majority of cases, this is going to be an ASCII string, but it doesn’t have to be.
subject: Option<Vec<u8>>The subject of the document.
In the vast majority of cases, this is going to be an ASCII string, but it doesn’t have to be.
keywords: Option<Vec<u8>>The keywords of the document.
In the vast majority of cases, this is going to be an ASCII string, but it doesn’t have to be.
creator: Option<Vec<u8>>The creator of the document.
In the vast majority of cases, this is going to be an ASCII string, but it doesn’t have to be.
producer: Option<Vec<u8>>The producer of the document.
In the vast majority of cases, this is going to be an ASCII string, but it doesn’t have to be.