pub struct ParquetReplayCatalog<'a> { /* private fields */ }Expand description
Read-only replay catalog adapter backed by [ParquetDataCatalog].
Implementations§
Source§impl<'a> ParquetReplayCatalog<'a>
impl<'a> ParquetReplayCatalog<'a>
Trait Implementations§
Source§impl<'a> Debug for ParquetReplayCatalog<'a>
impl<'a> Debug for ParquetReplayCatalog<'a>
Source§impl ReplayCatalog for ParquetReplayCatalog<'_>
impl ReplayCatalog for ParquetReplayCatalog<'_>
Source§fn plan_slice(
&mut self,
query: &CatalogSliceQuery,
) -> Result<CatalogSliceCoverage, Self::Error>
fn plan_slice( &mut self, query: &CatalogSliceQuery, ) -> Result<CatalogSliceCoverage, Self::Error>
Plans one catalog slice without mutating catalog state. Read more
Source§fn load_slice(
&mut self,
plan: &CatalogSlicePlan,
) -> Result<Vec<CatalogReplayRecord>, Self::Error>
fn load_slice( &mut self, plan: &CatalogSlicePlan, ) -> Result<Vec<CatalogReplayRecord>, Self::Error>
Loads records for one planned catalog slice without live venue access. Read more
Auto Trait Implementations§
impl<'a> !RefUnwindSafe for ParquetReplayCatalog<'a>
impl<'a> !UnwindSafe for ParquetReplayCatalog<'a>
impl<'a> Freeze for ParquetReplayCatalog<'a>
impl<'a> Send for ParquetReplayCatalog<'a>
impl<'a> Sync for ParquetReplayCatalog<'a>
impl<'a> Unpin for ParquetReplayCatalog<'a>
impl<'a> UnsafeUnpin for ParquetReplayCatalog<'a>
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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