pub trait CatalogTrackPrimaryKeyChangeOperations {
// Required methods
fn track_primary_key_created(
&mut self,
shape: ShapeId,
primary_key: PrimaryKey,
) -> Result<()>;
fn track_primary_key_deleted(
&mut self,
shape: ShapeId,
primary_key: PrimaryKey,
) -> Result<()>;
}Required Methods§
fn track_primary_key_created( &mut self, shape: ShapeId, primary_key: PrimaryKey, ) -> Result<()>
fn track_primary_key_deleted( &mut self, shape: ShapeId, primary_key: PrimaryKey, ) -> Result<()>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".