pub trait CaptureDataChangesExt {
// Required methods
fn has_updates(&self) -> bool;
fn has_after(&self) -> bool;
fn has_before(&self) -> bool;
fn table(&self) -> Option<&str>;
}Expand description
Convenience methods for Option<CaptureDataChangesInfo> to keep call sites simple.
Required Methods§
fn has_updates(&self) -> bool
fn has_after(&self) -> bool
fn has_before(&self) -> bool
fn table(&self) -> Option<&str>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".