pub struct Painter<T> {
pub draw: Box<dyn FnMut(&mut DrawCx<'_, '_>, &mut T)>,
pub size: Option<Size>,
}
Expand description
A view that draws something.
The painter takes up as much space as possible.
Fields§
§draw: Box<dyn FnMut(&mut DrawCx<'_, '_>, &mut T)>
The draw function.
size: Option<Size>
The size of the view.
Implementations§
Trait Implementations§
Source§impl<T> View<T> for Painter<T>
impl<T> View<T> for Painter<T>
Source§fn build(
&mut self,
_cx: &mut BuildCx<'_, '_>,
_data: &mut T,
) -> <Painter<T> as View<T>>::State
fn build( &mut self, _cx: &mut BuildCx<'_, '_>, _data: &mut T, ) -> <Painter<T> as View<T>>::State
Build the view state, see top-level documentation for more information.
Source§fn rebuild(
&mut self,
_state: &mut <Painter<T> as View<T>>::State,
cx: &mut RebuildCx<'_, '_>,
_data: &mut T,
old: &Painter<T>,
)
fn rebuild( &mut self, _state: &mut <Painter<T> as View<T>>::State, cx: &mut RebuildCx<'_, '_>, _data: &mut T, old: &Painter<T>, )
Rebuild the view state, see top-level documentation for more information.
Source§fn event(
&mut self,
_state: &mut <Painter<T> as View<T>>::State,
_cx: &mut EventCx<'_, '_>,
_data: &mut T,
_event: &Event,
) -> bool
fn event( &mut self, _state: &mut <Painter<T> 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> Freeze for Painter<T>
impl<T> !RefUnwindSafe for Painter<T>
impl<T> !Send for Painter<T>
impl<T> !Sync for Painter<T>
impl<T> Unpin for Painter<T>
impl<T> !UnwindSafe for Painter<T>
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