Skip to main content

CaptureDataChangesExt

Trait CaptureDataChangesExt 

Source
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§

Source

fn has_updates(&self) -> bool

Source

fn has_after(&self) -> bool

Source

fn has_before(&self) -> bool

Source

fn table(&self) -> Option<&str>

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl CaptureDataChangesExt for Option<CaptureDataChangesInfo>

Source§

fn has_updates(&self) -> bool

Source§

fn has_after(&self) -> bool

Source§

fn has_before(&self) -> bool

Source§

fn table(&self) -> Option<&str>

Implementors§