pub struct SeedValueDictionary {
pub flags: u32,
pub filter: Option<Name>,
pub sub_filter: Option<Vec<Name>>,
pub value: Option<Primitive>,
pub digest_method: Vec<PdfString>,
pub other: Dictionary,
}Fields§
§flags: u32§filter: Option<Name>§sub_filter: Option<Vec<Name>>§value: Option<Primitive>§digest_method: Vec<PdfString>§other: DictionaryTrait Implementations§
Source§impl Debug for SeedValueDictionary
impl Debug for SeedValueDictionary
Source§impl FromDict for SeedValueDictionary
impl FromDict for SeedValueDictionary
Source§impl Object for SeedValueDictionary
impl Object for SeedValueDictionary
Source§impl ObjectWrite for SeedValueDictionary
impl ObjectWrite for SeedValueDictionary
Source§impl ToDict for SeedValueDictionary
impl ToDict for SeedValueDictionary
Auto Trait Implementations§
impl Freeze for SeedValueDictionary
impl RefUnwindSafe for SeedValueDictionary
impl Send for SeedValueDictionary
impl Sync for SeedValueDictionary
impl Unpin for SeedValueDictionary
impl UnwindSafe for SeedValueDictionary
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