pub trait ITransactionPhase0EnlistmentAsync_Impl: Sized {
    // Required methods
    fn Enable(&self) -> Result<()>;
    fn WaitForEnlistment(&self) -> Result<()>;
    fn Phase0Done(&self) -> Result<()>;
    fn Unenlist(&self) -> Result<()>;
    fn GetTransaction(&self) -> Result<ITransaction>;
}

Required Methods§

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

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

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

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

fn GetTransaction(&self) -> Result<ITransaction>

Object Safety§

This trait is not object safe.

Implementors§