pub trait IComThreadingInfo_Impl: Sized {
    // Required methods
    fn GetCurrentApartmentType(&self) -> Result<APTTYPE>;
    fn GetCurrentThreadType(&self) -> Result<THDTYPE>;
    fn GetCurrentLogicalThreadId(&self) -> Result<GUID>;
    fn SetCurrentLogicalThreadId(&self, rguid: *const GUID) -> Result<()>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§