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