pub trait ChangeLogHook {
type Database;
type Table;
// Required method
fn changelog(
&mut self,
log: Vec<Change<Self::Database, Self::Table>>,
) -> bool;
}Available on crate feature
sqlsrv only.Expand description
Application callback used to process committed changes to the database.