pub struct RawReader<'a, T: SpanWeight<Slab> + HasPos> { /* private fields */ }Implementations§
Source§impl<'a, T: SpanWeight<Slab> + HasPos> RawReader<'a, T>
impl<'a, T: SpanWeight<Slab> + HasPos> RawReader<'a, T>
pub fn empty() -> RawReader<'static, T>
Sourcepub fn read_next(&mut self, length: usize) -> Result<&'a [u8], ReadRawError>
pub fn read_next(&mut self, length: usize) -> Result<&'a [u8], ReadRawError>
Read a slice out of a set of slabs
Returns an error if:
- The read would cross a slab boundary
- The read would go past the end of the data
pub fn seek_to(&mut self, advance: usize)
Trait Implementations§
Auto Trait Implementations§
impl<'a, T> Freeze for RawReader<'a, T>where
T: Freeze,
impl<'a, T> RefUnwindSafe for RawReader<'a, T>where
T: RefUnwindSafe,
impl<'a, T> Send for RawReader<'a, T>
impl<'a, T> Sync for RawReader<'a, T>where
T: Sync,
impl<'a, T> Unpin for RawReader<'a, T>where
T: Unpin,
impl<'a, T> UnwindSafe for RawReader<'a, T>where
T: UnwindSafe + RefUnwindSafe,
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