pub struct CellIterator<'alloc>(/* private fields */);Expand description
Implementations§
Source§impl<'alloc> CellIterator<'alloc>
impl<'alloc> CellIterator<'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,
row: &RowIteration<'alloc, '_>,
) -> Result<CellIteration<'alloc, '_>>
pub fn update( &mut self, row: &RowIteration<'alloc, '_>, ) -> Result<CellIteration<'alloc, '_>>
Update the cell iterator for a new row iteration, returning a new cell iteration.
Trait Implementations§
Source§impl<'alloc> Debug for CellIterator<'alloc>
impl<'alloc> Debug for CellIterator<'alloc>
Auto Trait Implementations§
impl<'alloc> Freeze for CellIterator<'alloc>
impl<'alloc> RefUnwindSafe for CellIterator<'alloc>
impl<'alloc> !Send for CellIterator<'alloc>
impl<'alloc> !Sync for CellIterator<'alloc>
impl<'alloc> Unpin for CellIterator<'alloc>
impl<'alloc> UnsafeUnpin for CellIterator<'alloc>
impl<'alloc> UnwindSafe for CellIterator<'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