pub trait ViewSeq<T> {
type State;
// Required methods
fn len(&self) -> usize;
fn build(
&mut self,
cx: &mut BuildCx<'_, '_>,
data: &mut T,
) -> (Self::State, Vec<ViewState>);
fn rebuild(
&mut self,
state: &mut Self::State,
cx: &mut BuildCx<'_, '_>,
data: &mut T,
old: &Self,
);
fn rebuild_nth(
&mut self,
n: usize,
state: &mut Self::State,
cx: &mut RebuildCx<'_, '_>,
data: &mut T,
old: &Self,
);
fn event_nth(
&mut self,
n: usize,
state: &mut Self::State,
cx: &mut EventCx<'_, '_>,
data: &mut T,
event: &Event,
) -> bool;
fn layout_nth(
&mut self,
n: usize,
state: &mut Self::State,
cx: &mut LayoutCx<'_, '_>,
data: &mut T,
space: Space,
) -> Size;
fn draw_nth(
&mut self,
n: usize,
state: &mut Self::State,
cx: &mut DrawCx<'_, '_>,
data: &mut T,
);
}
Expand description
A sequence of views.
Required Associated Types§
Required Methods§
Sourcefn build(
&mut self,
cx: &mut BuildCx<'_, '_>,
data: &mut T,
) -> (Self::State, Vec<ViewState>)
fn build( &mut self, cx: &mut BuildCx<'_, '_>, data: &mut T, ) -> (Self::State, Vec<ViewState>)
Build the sequence state.
Sourcefn rebuild(
&mut self,
state: &mut Self::State,
cx: &mut BuildCx<'_, '_>,
data: &mut T,
old: &Self,
)
fn rebuild( &mut self, state: &mut Self::State, cx: &mut BuildCx<'_, '_>, data: &mut T, old: &Self, )
Rebuild the sequence state.
Sourcefn rebuild_nth(
&mut self,
n: usize,
state: &mut Self::State,
cx: &mut RebuildCx<'_, '_>,
data: &mut T,
old: &Self,
)
fn rebuild_nth( &mut self, n: usize, state: &mut Self::State, cx: &mut RebuildCx<'_, '_>, data: &mut T, old: &Self, )
Rebuild the nth view.
Sourcefn event_nth(
&mut self,
n: usize,
state: &mut Self::State,
cx: &mut EventCx<'_, '_>,
data: &mut T,
event: &Event,
) -> bool
fn event_nth( &mut self, n: usize, state: &mut Self::State, cx: &mut EventCx<'_, '_>, data: &mut T, event: &Event, ) -> bool
Handle an event for the nth view.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.