pub trait CatalogTrackAuthenticationChangeOperations {
// Required methods
fn track_authentication_created(
&mut self,
auth: Authentication,
) -> Result<()>;
fn track_authentication_deleted(
&mut self,
auth: Authentication,
) -> Result<()>;
}Required Methods§
fn track_authentication_created(&mut self, auth: Authentication) -> Result<()>
fn track_authentication_deleted(&mut self, auth: Authentication) -> Result<()>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".