pub struct Era1Writer<W: Write> { /* private fields */ }
Expand description
Writer for Era1 files that builds on top of E2StoreWriter
Implementations§
Source§impl<W: Write> Era1Writer<W>
impl<W: Write> Era1Writer<W>
Sourcepub fn new(writer: W) -> Self
pub fn new(writer: W) -> Self
Create a new Era1Writer
Sourcepub fn write_version(&mut self) -> Result<(), E2sError>
pub fn write_version(&mut self) -> Result<(), E2sError>
Write the version entry
Sourcepub fn write_era1_file(&mut self, era1_file: &Era1File) -> Result<(), E2sError>
pub fn write_era1_file(&mut self, era1_file: &Era1File) -> Result<(), E2sError>
Write a complete Era1File
to the underlying writer
Sourcepub fn write_block(&mut self, block_tuple: &BlockTuple) -> Result<(), E2sError>
pub fn write_block(&mut self, block_tuple: &BlockTuple) -> Result<(), E2sError>
Write a single block tuple
Sourcepub fn write_accumulator(
&mut self,
accumulator: &Accumulator,
) -> Result<(), E2sError>
pub fn write_accumulator( &mut self, accumulator: &Accumulator, ) -> Result<(), E2sError>
Write the accumulator
Sourcepub fn write_block_index(
&mut self,
block_index: &BlockIndex,
) -> Result<(), E2sError>
pub fn write_block_index( &mut self, block_index: &BlockIndex, ) -> Result<(), E2sError>
Write the block index
Trait Implementations§
Auto Trait Implementations§
impl<W> Freeze for Era1Writer<W>where
W: Freeze,
impl<W> RefUnwindSafe for Era1Writer<W>where
W: RefUnwindSafe,
impl<W> Send for Era1Writer<W>where
W: Send,
impl<W> Sync for Era1Writer<W>where
W: Sync,
impl<W> Unpin for Era1Writer<W>where
W: Unpin,
impl<W> UnwindSafe for Era1Writer<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.