pub struct ZStack<V> {
pub content: PodSeq<V>,
}
Expand description
A view that overlays its content on top of each other.
Fields§
§content: PodSeq<V>
The content to overlay.
Implementations§
Trait Implementations§
Source§impl<T, V: ViewSeq<T>> View<T> for ZStack<V>
impl<T, V: ViewSeq<T>> View<T> for ZStack<V>
Source§type State = SeqState<T, V>
type State = 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) -> Self::State
fn build(&mut self, cx: &mut BuildCx<'_, '_>, data: &mut T) -> Self::State
Build the view state, see top-level documentation for more information.
Source§fn rebuild(
&mut self,
state: &mut Self::State,
cx: &mut RebuildCx<'_, '_>,
data: &mut T,
old: &Self,
)
fn rebuild( &mut self, state: &mut Self::State, cx: &mut RebuildCx<'_, '_>, data: &mut T, old: &Self, )
Rebuild the view state, see top-level documentation for more information.
Source§fn event(
&mut self,
state: &mut Self::State,
cx: &mut EventCx<'_, '_>,
data: &mut T,
event: &Event,
) -> bool
fn event( &mut self, state: &mut Self::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 ZStack<V>where
V: Freeze,
impl<V> RefUnwindSafe for ZStack<V>where
V: RefUnwindSafe,
impl<V> Send for ZStack<V>where
V: Send,
impl<V> Sync for ZStack<V>where
V: Sync,
impl<V> Unpin for ZStack<V>where
V: Unpin,
impl<V> UnwindSafe for ZStack<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