pub struct IntegrationTestResult {
pub test_id: String,
pub scenario: String,
pub columns: usize,
pub total_bytes: u64,
pub compression_ratio: f32,
pub compression_target_met: bool,
pub byte_fidelity: bool,
pub elapsed_ms: u128,
pub throughput_mbps: f32,
}Expand description
Integration test result with detailed statistics
Fields§
§test_id: String§scenario: String§columns: usize§total_bytes: u64§compression_ratio: f32§compression_target_met: bool§byte_fidelity: bool§elapsed_ms: u128§throughput_mbps: f32Trait Implementations§
Source§impl Clone for IntegrationTestResult
impl Clone for IntegrationTestResult
Source§fn clone(&self) -> IntegrationTestResult
fn clone(&self) -> IntegrationTestResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 IntegrationTestResult
impl RefUnwindSafe for IntegrationTestResult
impl Send for IntegrationTestResult
impl Sync for IntegrationTestResult
impl Unpin for IntegrationTestResult
impl UnsafeUnpin for IntegrationTestResult
impl UnwindSafe for IntegrationTestResult
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