pub struct ResolvedBounds {
pub x: f32,
pub y: f32,
pub width: f32,
pub height: f32,
}Expand description
Resolved absolute bounding box after constraint solving.
Fields§
§x: f32§y: f32§width: f32§height: f32Implementations§
Trait Implementations§
Source§impl Clone for ResolvedBounds
impl Clone for ResolvedBounds
Source§fn clone(&self) -> ResolvedBounds
fn clone(&self) -> ResolvedBounds
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 ResolvedBounds
impl Debug for ResolvedBounds
Source§impl Default for ResolvedBounds
impl Default for ResolvedBounds
Source§fn default() -> ResolvedBounds
fn default() -> ResolvedBounds
Returns the “default value” for a type. Read more
Source§impl PartialEq for ResolvedBounds
impl PartialEq for ResolvedBounds
impl Copy for ResolvedBounds
impl StructuralPartialEq for ResolvedBounds
Auto Trait Implementations§
impl Freeze for ResolvedBounds
impl RefUnwindSafe for ResolvedBounds
impl Send for ResolvedBounds
impl Sync for ResolvedBounds
impl Unpin for ResolvedBounds
impl UnsafeUnpin for ResolvedBounds
impl UnwindSafe for ResolvedBounds
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