pub struct PageInfo {
pub index: usize,
pub width: f32,
pub height: f32,
pub rotation: i32,
pub object_ref: ObjectRef,
}Expand description
Information about a page.
Fields§
§index: usizePage index (0-based)
width: f32Page width in points
height: f32Page height in points
rotation: i32Page rotation (0, 90, 180, 270)
object_ref: ObjectRefObject reference for this page
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PageInfo
impl RefUnwindSafe for PageInfo
impl Send for PageInfo
impl Sync for PageInfo
impl Unpin for PageInfo
impl UnwindSafe for PageInfo
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