pub trait IDtcLuRmEnlistmentSink_Impl: Sized {
    // Required methods
    fn AckUnplug(&self) -> Result<()>;
    fn TmDown(&self) -> Result<()>;
    fn SessionLost(&self) -> Result<()>;
    fn BackedOut(&self) -> Result<()>;
    fn BackOut(&self) -> Result<()>;
    fn Committed(&self) -> Result<()>;
    fn Forget(&self) -> Result<()>;
    fn Prepare(&self) -> Result<()>;
    fn RequestCommit(&self) -> Result<()>;
}

Required Methods§

fn AckUnplug(&self) -> Result<()>

fn TmDown(&self) -> Result<()>

fn SessionLost(&self) -> Result<()>

fn BackedOut(&self) -> Result<()>

fn BackOut(&self) -> Result<()>

fn Committed(&self) -> Result<()>

fn Forget(&self) -> Result<()>

fn Prepare(&self) -> Result<()>

fn RequestCommit(&self) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§