pub trait ISynchronizeContainer_Impl: Sized {
    // Required methods
    fn AddSynchronize(&self, psync: Option<&ISynchronize>) -> Result<()>;
    fn WaitMultiple(&self, dwflags: u32, dwtimeout: u32) -> Result<ISynchronize>;
}

Required Methods§

fn AddSynchronize(&self, psync: Option<&ISynchronize>) -> Result<()>

fn WaitMultiple(&self, dwflags: u32, dwtimeout: u32) -> Result<ISynchronize>

Object Safety§

This trait is not object safe.

Implementors§