pub enum CdcStore {
Memory(MemoryCdcStorage),
Sqlite(SqliteCdcStorage),
}Variants§
Memory(MemoryCdcStorage)
Sqlite(SqliteCdcStorage)
Implementations§
Source§impl CdcStore
impl CdcStore
pub fn memory() -> Self
pub fn sqlite(config: SqliteConfig) -> Self
pub fn write(&self, cdc: &Cdc) -> CdcStorageResult<()>
pub fn read(&self, version: CommitVersion) -> CdcStorageResult<Option<Cdc>>
pub fn read_range( &self, start: Bound<CommitVersion>, end: Bound<CommitVersion>, batch_size: u64, ) -> CdcStorageResult<CdcBatch>
pub fn count(&self, version: CommitVersion) -> CdcStorageResult<usize>
pub fn min_version(&self) -> CdcStorageResult<Option<CommitVersion>>
pub fn max_version(&self) -> CdcStorageResult<Option<CommitVersion>>
pub fn delete_before( &self, version: CommitVersion, ) -> CdcStorageResult<DropBeforeResult>
pub fn find_ttl_cutoff( &self, cutoff: DateTime, ) -> CdcStorageResult<Option<CommitVersion>>
Trait Implementations§
Source§impl CdcStorage for CdcStore
impl CdcStorage for CdcStore
fn write(&self, cdc: &Cdc) -> CdcStorageResult<()>
fn read(&self, version: CommitVersion) -> CdcStorageResult<Option<Cdc>>
fn read_range( &self, start: Bound<CommitVersion>, end: Bound<CommitVersion>, batch_size: u64, ) -> CdcStorageResult<CdcBatch>
fn count(&self, version: CommitVersion) -> CdcStorageResult<usize>
fn min_version(&self) -> CdcStorageResult<Option<CommitVersion>>
fn max_version(&self) -> CdcStorageResult<Option<CommitVersion>>
fn drop_before( &self, version: CommitVersion, ) -> CdcStorageResult<DropBeforeResult>
fn find_ttl_cutoff( &self, cutoff: DateTime, ) -> CdcStorageResult<Option<CommitVersion>>
fn exists(&self, version: CommitVersion) -> CdcStorageResult<bool>
fn range( &self, start: Bound<CommitVersion>, end: Bound<CommitVersion>, ) -> CdcStorageResult<CdcBatch>
fn scan(&self, batch_size: u64) -> CdcStorageResult<CdcBatch>
Auto Trait Implementations§
impl Freeze for CdcStore
impl !RefUnwindSafe for CdcStore
impl Send for CdcStore
impl Sync for CdcStore
impl Unpin for CdcStore
impl UnsafeUnpin for CdcStore
impl !UnwindSafe for CdcStore
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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