[][src]Struct readfilez::ContinuableFile

#[must_use]pub struct ContinuableFile { /* fields omitted */ }

Implementations

impl ContinuableFile[src]

pub fn new(file: File) -> Self[src]

pub fn into_chunks(self, lns: LengthSpec) -> ChunkedFile

Notable traits for ChunkedFile

impl Iterator for ChunkedFile type Item = Result<FileHandle>;
[src]

pub fn sync_len(&mut self)[src]

pub fn next(&mut self, lns: LengthSpec) -> Result<FileHandle>[src]

Tries to read the next part of the file contents, according to the LengthSpec

Trait Implementations

impl Seek for ContinuableFile[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.