pub struct Space {
pub min: Size,
pub max: Size,
}
Expand description
Space available to lay out a view.
Fields§
§min: Size
Minimum size the view can be.
max: Size
Maximum size the view can be.
Implementations§
Source§impl Space
impl Space
Sourcepub fn from_size(size: Size) -> Space
pub fn from_size(size: Size) -> Space
Create a new space with the same minimum and maximum size.
Sourcepub fn loosen_width(self) -> Space
pub fn loosen_width(self) -> Space
Loosen the width, setting the minimum width to zero.
Sourcepub fn loosen_height(self) -> Space
pub fn loosen_height(self) -> Space
Loosen the height, setting the minimum height to zero.
Sourcepub fn constrain(self, other: Space) -> Space
pub fn constrain(self, other: Space) -> Space
Get the most constraning space between self
and `other
Sourcepub fn is_infinite(self) -> bool
pub fn is_infinite(self) -> bool
Get whether the space is infinite.
Trait Implementations§
Source§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 BitAndAssign for Space
impl BitAndAssign for Space
Source§fn bitand_assign(&mut self, rhs: Space)
fn bitand_assign(&mut self, rhs: Space)
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 moreimpl Copy for Space
impl StructuralPartialEq for Space
Auto Trait Implementations§
impl Freeze for Space
impl RefUnwindSafe for Space
impl Send for Space
impl Sync for Space
impl Unpin for Space
impl UnwindSafe for Space
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