pub struct LayoutConstraints {Show 20 fields
pub width: Option<Length>,
pub height: Option<Length>,
pub min_width: Option<f32>,
pub max_width: Option<f32>,
pub min_height: Option<f32>,
pub max_height: Option<f32>,
pub padding: Option<Padding>,
pub spacing: Option<f32>,
pub align_items: Option<Alignment>,
pub justify_content: Option<Justification>,
pub align_self: Option<Alignment>,
pub align_x: Option<Alignment>,
pub align_y: Option<Alignment>,
pub direction: Option<Direction>,
pub position: Option<Position>,
pub top: Option<f32>,
pub right: Option<f32>,
pub bottom: Option<f32>,
pub left: Option<f32>,
pub z_index: Option<i32>,
}Expand description
Layout constraints for widget sizing and positioning
Fields§
§width: Option<Length>Primary sizing constraints
height: Option<Length>§min_width: Option<f32>Size constraints in pixels
max_width: Option<f32>§min_height: Option<f32>§max_height: Option<f32>§padding: Option<Padding>Inner spacing (padding)
spacing: Option<f32>Gap between child widgets
align_items: Option<Alignment>Alignment properties
justify_content: Option<Justification>§align_self: Option<Alignment>§align_x: Option<Alignment>Direct alignment (for Container, Text, etc.)
align_y: Option<Alignment>§direction: Option<Direction>Layout direction
position: Option<Position>Positioning
top: Option<f32>§right: Option<f32>§bottom: Option<f32>§left: Option<f32>§z_index: Option<i32>Implementations§
Trait Implementations§
Source§impl Clone for LayoutConstraints
impl Clone for LayoutConstraints
Source§fn clone(&self) -> LayoutConstraints
fn clone(&self) -> LayoutConstraints
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 LayoutConstraints
impl Debug for LayoutConstraints
Source§impl Default for LayoutConstraints
impl Default for LayoutConstraints
Source§fn default() -> LayoutConstraints
fn default() -> LayoutConstraints
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LayoutConstraints
impl<'de> Deserialize<'de> for LayoutConstraints
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 PartialEq for LayoutConstraints
impl PartialEq for LayoutConstraints
Source§impl Serialize for LayoutConstraints
impl Serialize for LayoutConstraints
impl StructuralPartialEq for LayoutConstraints
Auto Trait Implementations§
impl Freeze for LayoutConstraints
impl RefUnwindSafe for LayoutConstraints
impl Send for LayoutConstraints
impl Sync for LayoutConstraints
impl Unpin for LayoutConstraints
impl UnwindSafe for LayoutConstraints
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