pub trait CatalogTrackUserAuthenticationChangeOperations {
// Required methods
fn track_user_authentication_def_created(
&mut self,
auth: UserAuthenticationDef,
) -> Result<()>;
fn track_user_authentication_def_deleted(
&mut self,
auth: UserAuthenticationDef,
) -> Result<()>;
}Expand description
Trait for tracking user authentication definition changes during a transaction.