#[repr(C)]pub struct Size {
pub width: f64,
pub height: f64,
}
Expand description
A 2D size. Derived from kurbo.
Fields§
§width: f64
The width.
height: f64
The height.
Implementations§
Trait Implementations§
source§impl AddAssign for Size
impl AddAssign for Size
source§fn add_assign(&mut self, other: Size)
fn add_assign(&mut self, other: Size)
Performs the
+=
operation. Read moresource§impl DivAssign<f64> for Size
impl DivAssign<f64> for Size
source§fn div_assign(&mut self, other: f64)
fn div_assign(&mut self, other: f64)
Performs the
/=
operation. Read moresource§impl MulAssign<f64> for Size
impl MulAssign<f64> for Size
source§fn mul_assign(&mut self, other: f64)
fn mul_assign(&mut self, other: f64)
Performs the
*=
operation. Read moresource§impl PartialEq for Size
impl PartialEq for Size
source§impl SubAssign for Size
impl SubAssign for Size
source§fn sub_assign(&mut self, other: Size)
fn sub_assign(&mut self, other: Size)
Performs the
-=
operation. Read moreimpl Copy for Size
impl StructuralPartialEq for Size
Auto Trait Implementations§
impl RefUnwindSafe for Size
impl Send for Size
impl Sync for Size
impl Unpin for Size
impl UnwindSafe for Size
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