pub struct StackStyle {
pub justify: Justify,
pub align: Align,
pub gap: f32,
}
Expand description
A style for a Stack
.
Fields§
§justify: Justify
How to justify the content along the main axis.
align: Align
How to align the content along the cross axis, within each line.
gap: f32
The gap between children.
Trait Implementations§
Source§impl Clone for StackStyle
impl Clone for StackStyle
Source§fn clone(&self) -> StackStyle
fn clone(&self) -> StackStyle
Returns a copy 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 Rebuild for StackStyle
impl Rebuild for StackStyle
Source§fn rebuild(&self, cx: &mut RebuildCx<'_, '_>, old: &StackStyle)
fn rebuild(&self, cx: &mut RebuildCx<'_, '_>, old: &StackStyle)
Rebuild the view.
Source§impl Style for StackStyle
impl Style for StackStyle
Source§fn default_style() -> StyleBuilder<StackStyle>
fn default_style() -> StyleBuilder<StackStyle>
The default style of the object.
Auto Trait Implementations§
impl Freeze for StackStyle
impl RefUnwindSafe for StackStyle
impl Send for StackStyle
impl Sync for StackStyle
impl Unpin for StackStyle
impl UnwindSafe for StackStyle
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