pub struct PodSeq<V> { /* private fields */ }
Expand description
Implementations§
Source§impl<V> PodSeq<V>
impl<V> PodSeq<V>
Sourcepub fn build<T>(
&mut self,
cx: &mut BuildCx<'_, '_>,
data: &mut T,
) -> SeqState<T, V>where
V: ViewSeq<T>,
pub fn build<T>(
&mut self,
cx: &mut BuildCx<'_, '_>,
data: &mut T,
) -> SeqState<T, V>where
V: ViewSeq<T>,
Build the sequence state.
Sourcepub fn rebuild<T>(
&mut self,
state: &mut SeqState<T, V>,
cx: &mut BuildCx<'_, '_>,
data: &mut T,
old: &PodSeq<V>,
)where
V: ViewSeq<T>,
pub fn rebuild<T>(
&mut self,
state: &mut SeqState<T, V>,
cx: &mut BuildCx<'_, '_>,
data: &mut T,
old: &PodSeq<V>,
)where
V: ViewSeq<T>,
Rebuild the sequence state.
Sourcepub fn rebuild_nth<T>(
&mut self,
n: usize,
state: &mut SeqState<T, V>,
cx: &mut RebuildCx<'_, '_>,
data: &mut T,
old: &PodSeq<V>,
)where
V: ViewSeq<T>,
pub fn rebuild_nth<T>(
&mut self,
n: usize,
state: &mut SeqState<T, V>,
cx: &mut RebuildCx<'_, '_>,
data: &mut T,
old: &PodSeq<V>,
)where
V: ViewSeq<T>,
Rebuild the nth view.
Sourcepub fn event<T>(
&mut self,
state: &mut SeqState<T, V>,
cx: &mut EventCx<'_, '_>,
data: &mut T,
event: &Event,
) -> boolwhere
V: ViewSeq<T>,
pub fn event<T>(
&mut self,
state: &mut SeqState<T, V>,
cx: &mut EventCx<'_, '_>,
data: &mut T,
event: &Event,
) -> boolwhere
V: ViewSeq<T>,
Handle an event.
Sourcepub fn event_nth<T>(
&mut self,
n: usize,
state: &mut SeqState<T, V>,
cx: &mut EventCx<'_, '_>,
data: &mut T,
event: &Event,
) -> boolwhere
V: ViewSeq<T>,
pub fn event_nth<T>(
&mut self,
n: usize,
state: &mut SeqState<T, V>,
cx: &mut EventCx<'_, '_>,
data: &mut T,
event: &Event,
) -> boolwhere
V: ViewSeq<T>,
Handle an event for the nth view.
This is only useful if you need to handle events in a specific way, otherwise use Self::event
.
Trait Implementations§
impl<V> Copy for PodSeq<V>where
V: Copy,
impl<V> Eq for PodSeq<V>where
V: Eq,
impl<V> StructuralPartialEq for PodSeq<V>
Auto Trait Implementations§
impl<V> Freeze for PodSeq<V>where
V: Freeze,
impl<V> RefUnwindSafe for PodSeq<V>where
V: RefUnwindSafe,
impl<V> Send for PodSeq<V>where
V: Send,
impl<V> Sync for PodSeq<V>where
V: Sync,
impl<V> Unpin for PodSeq<V>where
V: Unpin,
impl<V> UnwindSafe for PodSeq<V>where
V: UnwindSafe,
Blanket Implementations§
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