pub trait CatalogTrackAuthenticationChangeOperations {
// Required methods
fn track_authentication_created(
&mut self,
auth: Authentication,
) -> Result<()>;
fn track_authentication_deleted(
&mut self,
auth: Authentication,
) -> Result<()>;
}Expand description
Trait for tracking authentication definition changes during a transaction.