pub trait Reopen: Write {
type Reopened: Read;
// Required method
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.
pub trait Reopen: Write {
type Reopened: Read;
// Required method
fn reopen(self) -> Result<Self::Reopened>;
}
An implementation of Reopen
is a writer that can be closed and reopened to read what was just
written.