pub struct E2StoreWriter<W: Write> { /* private fields */ }
Expand description
A writer for E2Store
files that wraps a BufWriter
.
Implementations§
Source§impl<W: Write> E2StoreWriter<W>
impl<W: Write> E2StoreWriter<W>
Sourcepub fn new(writer: W) -> Self
pub fn new(writer: W) -> Self
Create a new E2StoreWriter
Sourcepub fn with_version(writer: W) -> Result<Self, E2sError>
pub fn with_version(writer: W) -> Result<Self, E2sError>
Create a new E2StoreWriter
and write the version entry
Sourcepub fn write_version(&mut self) -> Result<(), E2sError>
pub fn write_version(&mut self) -> Result<(), E2sError>
Write the version entry as the first entry in the file. This must be called before writing any other entries.
Trait Implementations§
Auto Trait Implementations§
impl<W> Freeze for E2StoreWriter<W>where
W: Freeze,
impl<W> RefUnwindSafe for E2StoreWriter<W>where
W: RefUnwindSafe,
impl<W> Send for E2StoreWriter<W>where
W: Send,
impl<W> Sync for E2StoreWriter<W>where
W: Sync,
impl<W> Unpin for E2StoreWriter<W>where
W: Unpin,
impl<W> UnwindSafe for E2StoreWriter<W>where
W: UnwindSafe,
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more§impl<T> WithSubscriber for T
impl<T> WithSubscriber for T
§fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where
S: Into<Dispatch>,
§fn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Layout§
Note: Unable to compute type layout, possibly due to this type having generic parameters. Layout can only be computed for concrete, fully-instantiated types.