#[repr(C)]pub struct Size {
pub width: f32,
pub height: f32,
}
Expand description
A 2 dimensional size.
Fields§
§width: f32
The width.
height: f32
The height.
Implementations§
Source§impl Size
impl Size
Sourcepub const FILL: Size = Self::INFINITY
pub const FILL: Size = Self::INFINITY
Alias for Self::INFINITY
.
Sourcepub fn min_element(self) -> f32
pub fn min_element(self) -> f32
Get the smallest element of self.
Sourcepub fn max_element(self) -> f32
pub fn max_element(self) -> f32
Get the largest element of self.
Sourcepub fn clamp(self, min: Size, max: Size) -> Size
pub fn clamp(self, min: Size, max: Size) -> Size
Clamp self to the range [min, max] by element.
Sourcepub fn finite_or_zero(self) -> Size
pub fn finite_or_zero(self) -> Size
If self is finite, return self, otherwise return zero. Applied by element.
Sourcepub fn is_infinite(self) -> bool
pub fn is_infinite(self) -> bool
Get whether the size is infinite.
Trait Implementations§
Source§impl AddAssign<Size> for Point
impl AddAssign<Size> for Point
Source§fn add_assign(&mut self, rhs: Size)
fn add_assign(&mut self, rhs: Size)
Performs the
+=
operation. Read moreSource§impl AddAssign<Size> for Rect
impl AddAssign<Size> for Rect
Source§fn add_assign(&mut self, rhs: Size)
fn add_assign(&mut self, rhs: Size)
Performs the
+=
operation. Read moreSource§impl AddAssign<Size> for Space
impl AddAssign<Size> for Space
Source§fn add_assign(&mut self, rhs: Size)
fn add_assign(&mut self, rhs: Size)
Performs the
+=
operation. Read moreSource§impl AddAssign<Vector> for Size
impl AddAssign<Vector> for Size
Source§fn add_assign(&mut self, rhs: Vector)
fn add_assign(&mut self, rhs: Vector)
Performs the
+=
operation. Read moreSource§impl AddAssign<f32> for Size
impl AddAssign<f32> for Size
Source§fn add_assign(&mut self, rhs: f32)
fn add_assign(&mut self, rhs: f32)
Performs the
+=
operation. Read moreSource§impl AddAssign for Size
impl AddAssign for Size
Source§fn add_assign(&mut self, rhs: Size)
fn add_assign(&mut self, rhs: Size)
Performs the
+=
operation. Read moreSource§impl DivAssign<Size> for Point
impl DivAssign<Size> for Point
Source§fn div_assign(&mut self, rhs: Size)
fn div_assign(&mut self, rhs: Size)
Performs the
/=
operation. Read moreSource§impl DivAssign<Vector> for Size
impl DivAssign<Vector> for Size
Source§fn div_assign(&mut self, rhs: Vector)
fn div_assign(&mut self, rhs: Vector)
Performs the
/=
operation. Read moreSource§impl DivAssign<f32> for Size
impl DivAssign<f32> for Size
Source§fn div_assign(&mut self, rhs: f32)
fn div_assign(&mut self, rhs: f32)
Performs the
/=
operation. Read moreSource§impl DivAssign for Size
impl DivAssign for Size
Source§fn div_assign(&mut self, rhs: Size)
fn div_assign(&mut self, rhs: Size)
Performs the
/=
operation. Read moreSource§impl MulAssign<Size> for Point
impl MulAssign<Size> for Point
Source§fn mul_assign(&mut self, rhs: Size)
fn mul_assign(&mut self, rhs: Size)
Performs the
*=
operation. Read moreSource§impl MulAssign<Vector> for Size
impl MulAssign<Vector> for Size
Source§fn mul_assign(&mut self, rhs: Vector)
fn mul_assign(&mut self, rhs: Vector)
Performs the
*=
operation. Read moreSource§impl MulAssign<f32> for Size
impl MulAssign<f32> for Size
Source§fn mul_assign(&mut self, rhs: f32)
fn mul_assign(&mut self, rhs: f32)
Performs the
*=
operation. Read moreSource§impl MulAssign for Size
impl MulAssign for Size
Source§fn mul_assign(&mut self, rhs: Size)
fn mul_assign(&mut self, rhs: Size)
Performs the
*=
operation. Read moreSource§impl RemAssign<Size> for Point
impl RemAssign<Size> for Point
Source§fn rem_assign(&mut self, rhs: Size)
fn rem_assign(&mut self, rhs: Size)
Performs the
%=
operation. Read moreSource§impl RemAssign<Vector> for Size
impl RemAssign<Vector> for Size
Source§fn rem_assign(&mut self, rhs: Vector)
fn rem_assign(&mut self, rhs: Vector)
Performs the
%=
operation. Read moreSource§impl RemAssign<f32> for Size
impl RemAssign<f32> for Size
Source§fn rem_assign(&mut self, rhs: f32)
fn rem_assign(&mut self, rhs: f32)
Performs the
%=
operation. Read moreSource§impl RemAssign for Size
impl RemAssign for Size
Source§fn rem_assign(&mut self, rhs: Size)
fn rem_assign(&mut self, rhs: Size)
Performs the
%=
operation. Read moreSource§impl SubAssign<Size> for Point
impl SubAssign<Size> for Point
Source§fn sub_assign(&mut self, rhs: Size)
fn sub_assign(&mut self, rhs: Size)
Performs the
-=
operation. Read moreSource§impl SubAssign<Size> for Rect
impl SubAssign<Size> for Rect
Source§fn sub_assign(&mut self, rhs: Size)
fn sub_assign(&mut self, rhs: Size)
Performs the
-=
operation. Read moreSource§impl SubAssign<Size> for Space
impl SubAssign<Size> for Space
Source§fn sub_assign(&mut self, rhs: Size)
fn sub_assign(&mut self, rhs: Size)
Performs the
-=
operation. Read moreSource§impl SubAssign<Vector> for Size
impl SubAssign<Vector> for Size
Source§fn sub_assign(&mut self, rhs: Vector)
fn sub_assign(&mut self, rhs: Vector)
Performs the
-=
operation. Read moreSource§impl SubAssign<f32> for Size
impl SubAssign<f32> for Size
Source§fn sub_assign(&mut self, rhs: f32)
fn sub_assign(&mut self, rhs: f32)
Performs the
-=
operation. Read moreSource§impl SubAssign for Size
impl SubAssign for Size
Source§fn sub_assign(&mut self, rhs: Size)
fn sub_assign(&mut self, rhs: Size)
Performs the
-=
operation. Read moreimpl Copy for Size
impl StructuralPartialEq for Size
Auto Trait Implementations§
impl Freeze for Size
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