pub struct SignatureDictionary {Show 17 fields
pub filter: Name,
pub sub_filter: Name,
pub byte_range: Vec<usize>,
pub contents: PdfString,
pub cert: Vec<PdfString>,
pub reference: Option<Primitive>,
pub name: Option<PdfString>,
pub m: Option<PdfString>,
pub location: Option<PdfString>,
pub reason: Option<PdfString>,
pub contact_info: Option<PdfString>,
pub v: i32,
pub r: i32,
pub prop_build: Dictionary,
pub prop_auth_time: i32,
pub prop_auth_type: Name,
pub other: Dictionary,
}Fields§
§filter: Name§sub_filter: Name§byte_range: Vec<usize>§contents: PdfString§cert: Vec<PdfString>§reference: Option<Primitive>§name: Option<PdfString>§m: Option<PdfString>§location: Option<PdfString>§reason: Option<PdfString>§contact_info: Option<PdfString>§v: i32§r: i32§prop_build: Dictionary§prop_auth_time: i32§prop_auth_type: Name§other: DictionaryTrait Implementations§
Source§impl Debug for SignatureDictionary
impl Debug for SignatureDictionary
Source§impl FromDict for SignatureDictionary
impl FromDict for SignatureDictionary
Source§impl Object for SignatureDictionary
impl Object for SignatureDictionary
Source§impl ObjectWrite for SignatureDictionary
impl ObjectWrite for SignatureDictionary
Source§impl ToDict for SignatureDictionary
impl ToDict for SignatureDictionary
Auto Trait Implementations§
impl Freeze for SignatureDictionary
impl RefUnwindSafe for SignatureDictionary
impl Send for SignatureDictionary
impl Sync for SignatureDictionary
impl Unpin for SignatureDictionary
impl UnwindSafe for SignatureDictionary
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more