pub trait IMTSActivity_Impl: Sized {
    // Required methods
    fn SynchronousCall(&self, pcall: Option<&IMTSCall>) -> Result<()>;
    fn AsyncCall(&self, pcall: Option<&IMTSCall>) -> Result<()>;
    fn Reserved1(&self);
    fn BindToCurrentThread(&self) -> Result<()>;
    fn UnbindFromThread(&self) -> Result<()>;
}

Required Methods§

fn SynchronousCall(&self, pcall: Option<&IMTSCall>) -> Result<()>

fn AsyncCall(&self, pcall: Option<&IMTSCall>) -> Result<()>

fn Reserved1(&self)

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

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

Object Safety§

This trait is not object safe.

Implementors§