pub trait ITransactionProxy_Impl: Sized {
    // Required methods
    fn Commit(&self, guid: &GUID) -> Result<()>;
    fn Abort(&self) -> Result<()>;
    fn Promote(&self) -> Result<ITransaction>;
    fn CreateVoter(
        &self,
        ptxasync: Option<&ITransactionVoterNotifyAsync2>
    ) -> Result<ITransactionVoterBallotAsync2>;
    fn GetIsolationLevel(
        &self,
        __midl__itransactionproxy0000: *mut i32
    ) -> Result<()>;
    fn GetIdentifier(&self, pbstridentifier: *mut GUID) -> Result<()>;
    fn IsReusable(&self, pfisreusable: *mut BOOL) -> Result<()>;
}

Required Methods§

fn Commit(&self, guid: &GUID) -> Result<()>

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

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

fn CreateVoter( &self, ptxasync: Option<&ITransactionVoterNotifyAsync2> ) -> Result<ITransactionVoterBallotAsync2>

fn GetIsolationLevel( &self, __midl__itransactionproxy0000: *mut i32 ) -> Result<()>

fn GetIdentifier(&self, pbstridentifier: *mut GUID) -> Result<()>

fn IsReusable(&self, pfisreusable: *mut BOOL) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§