pub struct Page {
pub parent: PagesRc,
pub resources: Option<MaybeRef<Resources>>,
pub media_box: Option<Rectangle>,
pub crop_box: Option<Rectangle>,
pub trim_box: Option<Rectangle>,
pub contents: Option<Content>,
pub rotate: i32,
pub metadata: Option<Primitive>,
pub lgi: Option<Primitive>,
pub vp: Option<Primitive>,
pub annotations: Lazy<Vec<MaybeRef<Annot>>>,
pub other: Dictionary,
}Fields§
§parent: PagesRc§resources: Option<MaybeRef<Resources>>§media_box: Option<Rectangle>§crop_box: Option<Rectangle>§trim_box: Option<Rectangle>§contents: Option<Content>§rotate: i32§metadata: Option<Primitive>§lgi: Option<Primitive>§vp: Option<Primitive>§annotations: Lazy<Vec<MaybeRef<Annot>>>§other: DictionaryImplementations§
Trait Implementations§
Source§impl DataSize for Page
impl DataSize for Page
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 = 224usize
const STATIC_HEAP_SIZE: usize = 224usize
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 Page
impl ObjectWrite for Page
impl SubType<PagesNode> for Page
Auto Trait Implementations§
impl !Freeze for Page
impl RefUnwindSafe for Page
impl Send for Page
impl Sync for Page
impl Unpin for Page
impl UnwindSafe for Page
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