pub struct WrapStyle {
pub axis: Axis,
pub justify: Justify,
pub align: Align,
pub justify_cross: Justify,
pub row_gap: f32,
pub column_gap: f32,
}
Expand description
The style of a Wrap
.
Fields§
§axis: Axis
The axis.
justify: Justify
How to justify the content along the main axis.
align: Align
How to align the content along the cross axis.
justify_cross: Justify
How to justify the content along the cross axis.
row_gap: f32
The gap between each row.
column_gap: f32
The gap between each column.
Trait Implementations§
Source§impl Style for WrapStyle
impl Style for WrapStyle
Source§fn default_style() -> StyleBuilder<WrapStyle>
fn default_style() -> StyleBuilder<WrapStyle>
The default style of the object.
Auto Trait Implementations§
impl Freeze for WrapStyle
impl RefUnwindSafe for WrapStyle
impl Send for WrapStyle
impl Sync for WrapStyle
impl Unpin for WrapStyle
impl UnwindSafe for WrapStyle
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