pub struct CdcBatch {
pub items: Vec<Cdc>,
pub has_more: bool,
}Expand description
A batch of CDC entries with continuation info.
Fields§
§items: Vec<Cdc>The CDC entries in this batch.
has_more: boolWhether there are more items after this batch.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CdcBatch
impl RefUnwindSafe for CdcBatch
impl Send for CdcBatch
impl Sync for CdcBatch
impl Unpin for CdcBatch
impl UnwindSafe for CdcBatch
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