pub trait IServiceActivity_Impl: Sized {
    // Required methods
    fn SynchronousCall(
        &self,
        piservicecall: Option<&IServiceCall>
    ) -> Result<()>;
    fn AsynchronousCall(
        &self,
        piservicecall: Option<&IServiceCall>
    ) -> Result<()>;
    fn BindToCurrentThread(&self) -> Result<()>;
    fn UnbindFromThread(&self) -> Result<()>;
}

Required Methods§

fn SynchronousCall(&self, piservicecall: Option<&IServiceCall>) -> Result<()>

fn AsynchronousCall(&self, piservicecall: Option<&IServiceCall>) -> Result<()>

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

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

Object Safety§

This trait is not object safe.

Implementors§