pub struct ArrowReaderMetricsInner {
records_read_from_inner: AtomicUsize,
records_read_from_cache: AtomicUsize,
}
Expand description
Holds the actual metrics for the Arrow reader.
Please see ArrowReaderMetrics
for the public interface.
Fields§
§records_read_from_inner: AtomicUsize
Total number of records read from the inner reader (uncached)
records_read_from_cache: AtomicUsize
Total number of records read from previously cached pages
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl !Freeze for ArrowReaderMetricsInner
impl RefUnwindSafe for ArrowReaderMetricsInner
impl Send for ArrowReaderMetricsInner
impl Sync for ArrowReaderMetricsInner
impl Unpin for ArrowReaderMetricsInner
impl UnwindSafe for ArrowReaderMetricsInner
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> 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