pub struct PagePoint {
pub x: f64,
pub y: f64,
}Expand description
A point in page space (points, origin bottom-left, y-up).
Fields§
§x: f64Horizontal position in points, from the left page edge.
y: f64Vertical position in points, from the bottom page edge (y-up).
Implementations§
Trait Implementations§
impl Copy for PagePoint
impl StructuralPartialEq for PagePoint
Auto Trait Implementations§
impl Freeze for PagePoint
impl RefUnwindSafe for PagePoint
impl Send for PagePoint
impl Sync for PagePoint
impl Unpin for PagePoint
impl UnsafeUnpin for PagePoint
impl UnwindSafe for PagePoint
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