pub struct RebuildHandler<T, V> {
pub content: V,
pub rebuild: Box<dyn FnMut(&mut RebuildCx<'_, '_>, &mut T)>,
}
Expand description
A view that handles rebuilds.
The Self::rebuild
callback is called when a rebuild is requested.
Fields§
§content: V
The content.
rebuild: Box<dyn FnMut(&mut RebuildCx<'_, '_>, &mut T)>
The callback for when a rebuild is requested.
Implementations§
Source§impl<T, V> RebuildHandler<T, V>
impl<T, V> RebuildHandler<T, V>
Sourcepub fn new(
content: V,
rebuild: impl FnMut(&mut RebuildCx<'_, '_>, &mut T) + 'static,
) -> RebuildHandler<T, V>
pub fn new( content: V, rebuild: impl FnMut(&mut RebuildCx<'_, '_>, &mut T) + 'static, ) -> RebuildHandler<T, V>
Create a new RebuildHandler
.
Trait Implementations§
Source§impl<T, V> View<T> for RebuildHandler<T, V>where
V: View<T>,
impl<T, V> View<T> for RebuildHandler<T, V>where
V: View<T>,
Source§type State = <V as View<T>>::State
type State = <V as View<T>>::State
The state of the view, see top-level documentation for more information.
Source§fn build(
&mut self,
cx: &mut BuildCx<'_, '_>,
data: &mut T,
) -> <RebuildHandler<T, V> as View<T>>::State
fn build( &mut self, cx: &mut BuildCx<'_, '_>, data: &mut T, ) -> <RebuildHandler<T, V> as View<T>>::State
Build the view state, see top-level documentation for more information.
Source§fn rebuild(
&mut self,
state: &mut <RebuildHandler<T, V> as View<T>>::State,
cx: &mut RebuildCx<'_, '_>,
data: &mut T,
old: &RebuildHandler<T, V>,
)
fn rebuild( &mut self, state: &mut <RebuildHandler<T, V> as View<T>>::State, cx: &mut RebuildCx<'_, '_>, data: &mut T, old: &RebuildHandler<T, V>, )
Rebuild the view state, see top-level documentation for more information.
Source§fn event(
&mut self,
state: &mut <RebuildHandler<T, V> as View<T>>::State,
cx: &mut EventCx<'_, '_>,
data: &mut T,
event: &Event,
) -> bool
fn event( &mut self, state: &mut <RebuildHandler<T, 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<T, V> Freeze for RebuildHandler<T, V>where
V: Freeze,
impl<T, V> !RefUnwindSafe for RebuildHandler<T, V>
impl<T, V> !Send for RebuildHandler<T, V>
impl<T, V> !Sync for RebuildHandler<T, V>
impl<T, V> Unpin for RebuildHandler<T, V>where
V: Unpin,
impl<T, V> !UnwindSafe for RebuildHandler<T, V>
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