pub struct Annot {Show 13 fields
pub subtype: Name,
pub rect: Option<Rectangle>,
pub contents: Option<PdfString>,
pub page: Option<PageRc>,
pub annotation_name: Option<PdfString>,
pub date: Option<Date>,
pub annot_flags: u32,
pub appearance_streams: Option<MaybeRef<AppearanceStreams>>,
pub appearance_state: Option<Name>,
pub border: Option<Primitive>,
pub color: Option<Primitive>,
pub ink_list: Option<Primitive>,
pub other: Dictionary,
}Fields§
§subtype: Name§rect: Option<Rectangle>§contents: Option<PdfString>§page: Option<PageRc>§annotation_name: Option<PdfString>§date: Option<Date>§annot_flags: u32§appearance_streams: Option<MaybeRef<AppearanceStreams>>§appearance_state: Option<Name>§border: Option<Primitive>§color: Option<Primitive>§ink_list: Option<Primitive>§other: DictionaryTrait Implementations§
Source§impl DataSize for Annot
impl DataSize for Annot
Source§const IS_DYNAMIC: bool = true
const IS_DYNAMIC: bool = true
If
true, the type has a heap size that can vary at runtime, depending on the actual value.Source§const STATIC_HEAP_SIZE: usize = 88usize
const STATIC_HEAP_SIZE: usize = 88usize
The amount of space a value of the type always occupies. If
IS_DYNAMIC is false, this is
the total amount of heap memory occupied by the value. Otherwise this is a lower bound.Source§fn estimate_heap_size(&self) -> usize
fn estimate_heap_size(&self) -> usize
Estimates the size of heap memory taken up by this value. Read more
Source§impl ObjectWrite for Annot
impl ObjectWrite for Annot
Auto Trait Implementations§
impl Freeze for Annot
impl RefUnwindSafe for Annot
impl Send for Annot
impl Sync for Annot
impl Unpin for Annot
impl UnwindSafe for Annot
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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