pub struct CatalogDeletedRow {
pub epoch: u64,
pub table: Symbol,
pub key: Symbol,
}Expand description
A row removed by a CatalogDelta.
Fields§
§epoch: u64Epoch at which the deletion occurred.
table: SymbolTable the row was deleted from.
key: SymbolKey of the deleted row.
Trait Implementations§
Source§impl Clone for CatalogDeletedRow
impl Clone for CatalogDeletedRow
Source§fn clone(&self) -> CatalogDeletedRow
fn clone(&self) -> CatalogDeletedRow
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CatalogDeletedRow
impl Debug for CatalogDeletedRow
impl Eq for CatalogDeletedRow
Source§impl PartialEq for CatalogDeletedRow
impl PartialEq for CatalogDeletedRow
Source§fn eq(&self, other: &CatalogDeletedRow) -> bool
fn eq(&self, other: &CatalogDeletedRow) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CatalogDeletedRow
Auto Trait Implementations§
impl Freeze for CatalogDeletedRow
impl RefUnwindSafe for CatalogDeletedRow
impl Send for CatalogDeletedRow
impl Sync for CatalogDeletedRow
impl Unpin for CatalogDeletedRow
impl UnsafeUnpin for CatalogDeletedRow
impl UnwindSafe for CatalogDeletedRow
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