pub struct RectangleMetrics {
pub left: f64,
pub right: f64,
pub top: f64,
pub bottom: f64,
pub width: f64,
pub height: f64,
}Fields§
§left: f64§right: f64§top: f64§bottom: f64§width: f64§height: f64Trait Implementations§
Source§impl Clone for RectangleMetrics
impl Clone for RectangleMetrics
Source§fn clone(&self) -> RectangleMetrics
fn clone(&self) -> RectangleMetrics
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 moreSource§impl Debug for RectangleMetrics
impl Debug for RectangleMetrics
impl Copy for RectangleMetrics
Auto Trait Implementations§
impl Freeze for RectangleMetrics
impl RefUnwindSafe for RectangleMetrics
impl Send for RectangleMetrics
impl Sync for RectangleMetrics
impl Unpin for RectangleMetrics
impl UnwindSafe for RectangleMetrics
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