pub struct PageAreaBox {
pub x: f64,
pub y: f64,
pub width: f64,
pub height: f64,
}Expand description
由四个值组成的矩形框。
Fields§
§x: f64左上角 X 坐标(mm)。
y: f64左上角 Y 坐标(mm)。
width: f64宽度(mm)。
height: f64高度(mm)。
Implementations§
Trait Implementations§
impl Copy for Box
impl StructuralPartialEq for Box
Auto Trait Implementations§
impl Freeze for Box
impl RefUnwindSafe for Box
impl Send for Box
impl Sync for Box
impl Unpin for Box
impl UnsafeUnpin for Box
impl UnwindSafe for Box
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