pub struct BoundedMemoryTelemetry {
pub max_chunk_rows: usize,
pub chunks: usize,
}Expand description
Bounded-memory telemetry collected while streaming rows.
Fields§
§max_chunk_rows: usizeMaximum row count accepted per loader chunk.
chunks: usizeNumber of chunks observed while streaming the input.
Trait Implementations§
Source§impl Clone for BoundedMemoryTelemetry
impl Clone for BoundedMemoryTelemetry
Source§fn clone(&self) -> BoundedMemoryTelemetry
fn clone(&self) -> BoundedMemoryTelemetry
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 moreSource§impl Debug for BoundedMemoryTelemetry
impl Debug for BoundedMemoryTelemetry
impl Eq for BoundedMemoryTelemetry
Source§impl PartialEq for BoundedMemoryTelemetry
impl PartialEq for BoundedMemoryTelemetry
Source§fn eq(&self, other: &BoundedMemoryTelemetry) -> bool
fn eq(&self, other: &BoundedMemoryTelemetry) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BoundedMemoryTelemetry
Auto Trait Implementations§
impl Freeze for BoundedMemoryTelemetry
impl RefUnwindSafe for BoundedMemoryTelemetry
impl Send for BoundedMemoryTelemetry
impl Sync for BoundedMemoryTelemetry
impl Unpin for BoundedMemoryTelemetry
impl UnsafeUnpin for BoundedMemoryTelemetry
impl UnwindSafe for BoundedMemoryTelemetry
Blanket Implementations§
impl<T> Allocation for T
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