pub enum Constraint {
Length(usize),
Percent(usize),
Min(usize),
Max(usize),
MinMax(usize, usize),
Fill(usize),
}Expand description
Size constraints Size constraints
Variants§
Length(usize)
Actual size
Percent(usize)
Percentage size of the parent widget
Min(usize)
Minimum size of the widget, widget expands to fit content
Max(usize)
Maximum size of the widget, widget expands to fit content
MinMax(usize, usize)
Minimum and maximum size of the widget, widget expands to fit content
Fill(usize)
Fills rest of the space (space is divided by all widgets with fill)
Trait Implementations§
Source§impl Clone for Constraint
impl Clone for Constraint
Source§fn clone(&self) -> Constraint
fn clone(&self) -> Constraint
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 Constraint
impl Debug for Constraint
Source§impl<'de> Deserialize<'de> for Constraint
impl<'de> Deserialize<'de> for Constraint
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<f64> for Constraint
impl From<f64> for Constraint
Source§impl From<usize> for Constraint
impl From<usize> for Constraint
Source§impl PartialEq for Constraint
impl PartialEq for Constraint
Source§impl Serialize for Constraint
impl Serialize for Constraint
impl Copy for Constraint
impl StructuralPartialEq for Constraint
Auto Trait Implementations§
impl Freeze for Constraint
impl RefUnwindSafe for Constraint
impl Send for Constraint
impl Sync for Constraint
impl Unpin for Constraint
impl UnwindSafe for Constraint
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