pub struct Focus<T, U, V> { /* private fields */ }
Expand description
A view that focuses on a part of the data.
This is useful when using components that require specific data.
Implementations§
Trait Implementations§
Source§impl<T, U, V> View<T> for Focus<T, U, V>where
V: View<U>,
impl<T, U, V> View<T> for Focus<T, U, V>where
V: View<U>,
Source§type State = <V as View<U>>::State
type State = <V as View<U>>::State
The state of the view, see top-level documentation for more information.
Source§fn build(
&mut self,
cx: &mut BuildCx<'_, '_>,
data: &mut T,
) -> <Focus<T, U, V> as View<T>>::State
fn build( &mut self, cx: &mut BuildCx<'_, '_>, data: &mut T, ) -> <Focus<T, U, V> as View<T>>::State
Build the view state, see top-level documentation for more information.
Source§fn rebuild(
&mut self,
state: &mut <Focus<T, U, V> as View<T>>::State,
cx: &mut RebuildCx<'_, '_>,
data: &mut T,
old: &Focus<T, U, V>,
)
fn rebuild( &mut self, state: &mut <Focus<T, U, V> as View<T>>::State, cx: &mut RebuildCx<'_, '_>, data: &mut T, old: &Focus<T, U, V>, )
Rebuild the view state, see top-level documentation for more information.
Source§fn event(
&mut self,
state: &mut <Focus<T, U, V> as View<T>>::State,
cx: &mut EventCx<'_, '_>,
data: &mut T,
event: &Event,
) -> bool
fn event( &mut self, state: &mut <Focus<T, U, 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, U, V> Freeze for Focus<T, U, V>where
V: Freeze,
impl<T, U, V> !RefUnwindSafe for Focus<T, U, V>
impl<T, U, V> !Send for Focus<T, U, V>
impl<T, U, V> !Sync for Focus<T, U, V>
impl<T, U, V> Unpin for Focus<T, U, V>where
V: Unpin,
impl<T, U, V> !UnwindSafe for Focus<T, U, 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