pub struct PositiveSize2D {
pub width: PositiveCoordinate,
pub height: PositiveCoordinate,
}Fields§
§width: PositiveCoordinateSpecifies the length of the extents rectangle in EMUs. This rectangle shall dictate the size of the object as displayed (the result of any scaling to the original object).
height: PositiveCoordinateSpecifies the width of the extents rectangle in EMUs. This rectangle shall dictate the size of the object as displayed (the result of any scaling to the original object).
Implementations§
Trait Implementations§
Source§impl Clone for PositiveSize2D
impl Clone for PositiveSize2D
Source§fn clone(&self) -> PositiveSize2D
fn clone(&self) -> PositiveSize2D
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for PositiveSize2D
impl RefUnwindSafe for PositiveSize2D
impl Send for PositiveSize2D
impl Sync for PositiveSize2D
impl Unpin for PositiveSize2D
impl UnwindSafe for PositiveSize2D
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