pub struct ChunkIteratorMut<'a> { /* private fields */ }
Expand description
Mutable iterator over fixed-size chunks of a memory-mapped file.
This iterator provides mutable access to chunks, but due to Rust’s borrowing rules, it cannot yield multiple mutable references simultaneously. Instead, it provides a callback-based interface.
Implementations§
Auto Trait Implementations§
impl<'a> Freeze for ChunkIteratorMut<'a>
impl<'a> !RefUnwindSafe for ChunkIteratorMut<'a>
impl<'a> Send for ChunkIteratorMut<'a>
impl<'a> Sync for ChunkIteratorMut<'a>
impl<'a> Unpin for ChunkIteratorMut<'a>
impl<'a> !UnwindSafe for ChunkIteratorMut<'a>
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