pub struct PdfDate {
pub year: u16,
pub month: u8,
pub day: u8,
pub hour: u8,
pub minute: u8,
pub second: u8,
pub ut: char,
pub ut_hour: u8,
pub ut_minutes: u8,
}Expand description
A parsed PDF date.
Fields§
§year: u16§month: u8§day: u8§hour: u8§minute: u8§second: u8§ut: charTimezone indicator: ‘+’, ‘-’, or ‘Z’
ut_hour: u8Timezone offset hours
ut_minutes: u8Timezone offset minutes
Implementations§
Trait Implementations§
impl Copy for PdfDate
impl Eq for PdfDate
impl StructuralPartialEq for PdfDate
Auto Trait Implementations§
impl Freeze for PdfDate
impl RefUnwindSafe for PdfDate
impl Send for PdfDate
impl Sync for PdfDate
impl Unpin for PdfDate
impl UnsafeUnpin for PdfDate
impl UnwindSafe for PdfDate
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