pub struct Stack<V> {
pub content: PodSeq<V>,
pub axis: Axis,
pub justify: Option<Justify>,
pub align: Option<Align>,
pub gap: Option<f32>,
}
Expand description
A view that stacks it’s content in a line.
Fields§
§content: PodSeq<V>
The content of the stack.
axis: Axis
The axis of the stack.
justify: Option<Justify>
How to justify the content along the main axis.
align: Option<Align>
How to align the content along the cross axis, within each line.
gap: Option<f32>
The gap between children.
Implementations§
Source§impl<V> Stack<V>
impl<V> Stack<V>
Source§impl<T> Stack<Vec<T>>
impl<T> Stack<Vec<T>>
Sourcepub fn vec_horizontal() -> Stack<Vec<T>>
pub fn vec_horizontal() -> Stack<Vec<T>>
Create a new horizontal Stack
, with vector content.
Sourcepub fn vec_vertical() -> Stack<Vec<T>>
pub fn vec_vertical() -> Stack<Vec<T>>
Create a new vertical Stack
, with vector content.
Trait Implementations§
Source§impl<V> Stylable for Stack<V>
impl<V> Stylable for Stack<V>
Source§impl<T, V> View<T> for Stack<V>where
V: ViewSeq<T>,
impl<T, V> View<T> for Stack<V>where
V: ViewSeq<T>,
Source§type State = (StackState, SeqState<T, V>)
type State = (StackState, SeqState<T, V>)
The state of the view, see top-level documentation for more information.
Source§fn build(
&mut self,
cx: &mut BuildCx<'_, '_>,
data: &mut T,
) -> <Stack<V> as View<T>>::State
fn build( &mut self, cx: &mut BuildCx<'_, '_>, data: &mut T, ) -> <Stack<V> as View<T>>::State
Build the view state, see top-level documentation for more information.
Source§fn rebuild(
&mut self,
_: &mut <Stack<V> as View<T>>::State,
cx: &mut RebuildCx<'_, '_>,
data: &mut T,
old: &Stack<V>,
)
fn rebuild( &mut self, _: &mut <Stack<V> as View<T>>::State, cx: &mut RebuildCx<'_, '_>, data: &mut T, old: &Stack<V>, )
Rebuild the view state, see top-level documentation for more information.
Source§fn event(
&mut self,
_: &mut <Stack<V> as View<T>>::State,
cx: &mut EventCx<'_, '_>,
data: &mut T,
event: &Event,
) -> bool
fn event( &mut self, _: &mut <Stack<V> as View<T>>::State, cx: &mut EventCx<'_, '_>, data: &mut T, event: &Event, ) -> bool
Handle an event, see top-level documentation for more information.
Auto Trait Implementations§
impl<V> Freeze for Stack<V>where
V: Freeze,
impl<V> RefUnwindSafe for Stack<V>where
V: RefUnwindSafe,
impl<V> Send for Stack<V>where
V: Send,
impl<V> Sync for Stack<V>where
V: Sync,
impl<V> Unpin for Stack<V>where
V: Unpin,
impl<V> UnwindSafe for Stack<V>where
V: UnwindSafe,
Blanket Implementations§
Source§impl<T, V> AnyView<T> for V
impl<T, V> AnyView<T> for V
Source§fn dyn_build(&mut self, cx: &mut BuildCx<'_, '_>, data: &mut T) -> Box<dyn Any>
fn dyn_build(&mut self, cx: &mut BuildCx<'_, '_>, data: &mut T) -> Box<dyn Any>
Build the view.
Source§fn dyn_rebuild(
&mut self,
state: &mut Box<dyn Any>,
cx: &mut RebuildCx<'_, '_>,
data: &mut T,
old: &dyn AnyView<T>,
)
fn dyn_rebuild( &mut self, state: &mut Box<dyn Any>, cx: &mut RebuildCx<'_, '_>, data: &mut T, old: &dyn AnyView<T>, )
Rebuild the view.
Source§fn dyn_event(
&mut self,
state: &mut Box<dyn Any>,
cx: &mut EventCx<'_, '_>,
data: &mut T,
event: &Event,
) -> bool
fn dyn_event( &mut self, state: &mut Box<dyn Any>, cx: &mut EventCx<'_, '_>, data: &mut T, event: &Event, ) -> bool
Handle an event.
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