pub struct Popup<V, P> { /* private fields */ }
Expand description
A view that can popup.
Implementations§
Trait Implementations§
Source§impl<T, V, P> View<T> for Popup<V, P>
impl<T, V, P> View<T> for Popup<V, P>
Source§type State = (PodState<T, V>, PodState<T, P>)
type State = (PodState<T, V>, PodState<T, P>)
The state of the view, see top-level documentation for more information.
Source§fn build(
&mut self,
cx: &mut BuildCx<'_, '_>,
data: &mut T,
) -> <Popup<V, P> as View<T>>::State
fn build( &mut self, cx: &mut BuildCx<'_, '_>, data: &mut T, ) -> <Popup<V, P> as View<T>>::State
Build the view state, see top-level documentation for more information.
Source§fn rebuild(
&mut self,
_: &mut <Popup<V, P> as View<T>>::State,
cx: &mut RebuildCx<'_, '_>,
data: &mut T,
old: &Popup<V, P>,
)
fn rebuild( &mut self, _: &mut <Popup<V, P> as View<T>>::State, cx: &mut RebuildCx<'_, '_>, data: &mut T, old: &Popup<V, P>, )
Rebuild the view state, see top-level documentation for more information.
Source§fn event(
&mut self,
_: &mut <Popup<V, P> as View<T>>::State,
cx: &mut EventCx<'_, '_>,
data: &mut T,
event: &Event,
) -> bool
fn event( &mut self, _: &mut <Popup<V, P> 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, P> Freeze for Popup<V, P>
impl<V, P> RefUnwindSafe for Popup<V, P>where
V: RefUnwindSafe,
P: RefUnwindSafe,
impl<V, P> Send for Popup<V, P>
impl<V, P> Sync for Popup<V, P>
impl<V, P> Unpin for Popup<V, P>
impl<V, P> UnwindSafe for Popup<V, P>where
V: UnwindSafe,
P: 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