pub struct BinaryHtmlExportStats {
pub writer_stats: BinaryHtmlStats,
pub total_export_time_ms: u64,
pub binary_read_time_ms: u64,
pub html_generation_time_ms: u64,
pub file_size_bytes: u64,
pub strategy_used: ProcessingStrategy,
pub throughput_allocations_per_sec: f64,
pub memory_efficiency: f64,
}
Expand description
Statistics for binary to HTML export operations
Fields§
§writer_stats: BinaryHtmlStats
Binary HTML writer statistics
total_export_time_ms: u64
Total export time in milliseconds
binary_read_time_ms: u64
Binary reading time in milliseconds
html_generation_time_ms: u64
HTML generation time in milliseconds
file_size_bytes: u64
File size in bytes
strategy_used: ProcessingStrategy
Processing strategy used
throughput_allocations_per_sec: f64
Throughput in allocations per second
memory_efficiency: f64
Memory efficiency in allocations per MB
Implementations§
Source§impl BinaryHtmlExportStats
impl BinaryHtmlExportStats
Sourcepub fn processing_efficiency(&self) -> f64
pub fn processing_efficiency(&self) -> f64
Calculate overall processing efficiency
Sourcepub fn performance_improvement(&self) -> f64
pub fn performance_improvement(&self) -> f64
Get performance improvement over baseline
Trait Implementations§
Source§impl Clone for BinaryHtmlExportStats
impl Clone for BinaryHtmlExportStats
Source§fn clone(&self) -> BinaryHtmlExportStats
fn clone(&self) -> BinaryHtmlExportStats
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for BinaryHtmlExportStats
impl RefUnwindSafe for BinaryHtmlExportStats
impl Send for BinaryHtmlExportStats
impl Sync for BinaryHtmlExportStats
impl Unpin for BinaryHtmlExportStats
impl UnwindSafe for BinaryHtmlExportStats
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§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