pub struct FileReader<'a, B: BlockIo> { /* private fields */ }Expand description
Buffered file reader for streaming large files
Provides a seek/read interface for files that may be too large to load entirely into memory.
Implementations§
Auto Trait Implementations§
impl<'a, B> Freeze for FileReader<'a, B>
impl<'a, B> RefUnwindSafe for FileReader<'a, B>where
B: RefUnwindSafe,
impl<'a, B> Send for FileReader<'a, B>where
B: Send,
impl<'a, B> Sync for FileReader<'a, B>where
B: Sync,
impl<'a, B> Unpin for FileReader<'a, B>
impl<'a, B> !UnwindSafe for FileReader<'a, B>
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