pub trait IBlockingLock_Impl: Sized {
    // Required methods
    fn Lock(&self, dwtimeout: u32) -> Result<()>;
    fn Unlock(&self) -> Result<()>;
}

Required Methods§

fn Lock(&self, dwtimeout: u32) -> Result<()>

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

Object Safety§

This trait is not object safe.

Implementors§