pub struct RowIterator<'alloc>(/* private fields */);Expand description
Implementations§
Source§impl<'alloc> RowIterator<'alloc>
impl<'alloc> RowIterator<'alloc>
Sourcepub fn new_with_alloc<'ctx: 'alloc, Ctx>(
alloc: &'alloc Allocator<'ctx, Ctx>,
) -> Result<Self>
pub fn new_with_alloc<'ctx: 'alloc, Ctx>( alloc: &'alloc Allocator<'ctx, Ctx>, ) -> Result<Self>
Create a new cell iterator instance with a custom allocator.
See the crate-level documentation regarding custom memory management and lifetimes.
Sourcepub fn update(
&mut self,
snapshot: &Snapshot<'alloc, '_>,
) -> Result<RowIteration<'alloc, '_>>
pub fn update( &mut self, snapshot: &Snapshot<'alloc, '_>, ) -> Result<RowIteration<'alloc, '_>>
Update the row iterator for a snapshot of the render state, returning a new row iteration.
Trait Implementations§
Source§impl<'alloc> Debug for RowIterator<'alloc>
impl<'alloc> Debug for RowIterator<'alloc>
Auto Trait Implementations§
impl<'alloc> Freeze for RowIterator<'alloc>
impl<'alloc> RefUnwindSafe for RowIterator<'alloc>
impl<'alloc> !Send for RowIterator<'alloc>
impl<'alloc> !Sync for RowIterator<'alloc>
impl<'alloc> Unpin for RowIterator<'alloc>
impl<'alloc> UnsafeUnpin for RowIterator<'alloc>
impl<'alloc> UnwindSafe for RowIterator<'alloc>
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