pub struct BufferScheduler { /* private fields */ }Expand description
An implementation of EncodingsIo that serves data from an in-memory buffer
Implementations§
Trait Implementations§
Source§impl Debug for BufferScheduler
impl Debug for BufferScheduler
Source§impl EncodingsIo for BufferScheduler
impl EncodingsIo for BufferScheduler
Source§fn submit_request(
&self,
ranges: Vec<Range<u64>>,
_priority: u64,
) -> BoxFuture<'static, Result<Vec<Bytes>>>
fn submit_request( &self, ranges: Vec<Range<u64>>, _priority: u64, ) -> BoxFuture<'static, Result<Vec<Bytes>>>
Submit an I/O request Read more
Source§fn submit_single(
&self,
range: Range<u64>,
priority: u64,
) -> BoxFuture<'static, Result<Bytes>>
fn submit_single( &self, range: Range<u64>, priority: u64, ) -> BoxFuture<'static, Result<Bytes>>
Submit an I/O request with a single range Read more
Source§fn with_bypass_backpressure(&self) -> Option<Arc<dyn EncodingsIo>>
fn with_bypass_backpressure(&self) -> Option<Arc<dyn EncodingsIo>>
Returns a version of this I/O service that bypasses backpressure for all requests. Read more
Source§fn with_io_stats(
&self,
_stats: Arc<dyn IoStatsRecorder>,
) -> Option<Arc<dyn EncodingsIo>>
fn with_io_stats( &self, _stats: Arc<dyn IoStatsRecorder>, ) -> Option<Arc<dyn EncodingsIo>>
Returns a version of this I/O service that additionally records the I/O it
performs into
stats, on top of any global accounting. This is the seam
used to measure exact per-scope (e.g. per-query) I/O without re-opening
files: wrap a reader’s I/O service, perform the reads, then inspect the
recorder. Read moreAuto Trait Implementations§
impl !Freeze for BufferScheduler
impl RefUnwindSafe for BufferScheduler
impl Send for BufferScheduler
impl Sync for BufferScheduler
impl Unpin for BufferScheduler
impl UnsafeUnpin for BufferScheduler
impl UnwindSafe for BufferScheduler
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
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