pub struct Rect {
pub x: f32,
pub y: f32,
pub width: f32,
pub height: f32,
}Expand description
An axis-aligned rectangle.
Fields§
§x: f32§y: f32§width: f32§height: f32Implementations§
Source§impl Rect
impl Rect
pub const ZERO: Self
pub fn new(x: f32, y: f32, width: f32, height: f32) -> Self
pub fn from_point_size(point: Point, size: Size) -> Self
pub fn origin(&self) -> Point
pub fn size(&self) -> Size
pub fn right(&self) -> f32
pub fn bottom(&self) -> f32
pub fn contains(&self, point: Point) -> bool
Trait Implementations§
impl Copy for Rect
impl StructuralPartialEq for Rect
Auto Trait Implementations§
impl Freeze for Rect
impl RefUnwindSafe for Rect
impl Send for Rect
impl Sync for Rect
impl Unpin for Rect
impl UnwindSafe for Rect
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