pub trait SqlServerCdcMetrics {
// Required methods
fn snapshot_table_lock_start(&self, table_name: &str);
fn snapshot_table_lock_end(&self, table_name: &str);
}Required Methods§
Sourcefn snapshot_table_lock_start(&self, table_name: &str)
fn snapshot_table_lock_start(&self, table_name: &str)
Called before the table lock is aquired
Sourcefn snapshot_table_lock_end(&self, table_name: &str)
fn snapshot_table_lock_end(&self, table_name: &str)
Called after the table lock is released
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".