Trait mm0b_parser::Reopen[][src]

pub trait Reopen: Write {
    type Reopened: Read;
    fn reopen(self) -> Result<Self::Reopened>;
}
Expand description

An implementation of Reopen is a writer that can be closed and reopened to read what was just written.

Associated Types

The type returned by reopen, which must implement Read.

Required methods

Consume this writer and reopen it as another type Self::Reopened, which supports reading to read what was just written.

Implementations on Foreign Types

Implementors