pub trait IGlobalOptions_Impl: Sized {
    // Required methods
    fn Set(
        &self,
        dwproperty: GLOBALOPT_PROPERTIES,
        dwvalue: usize
    ) -> Result<()>;
    fn Query(&self, dwproperty: GLOBALOPT_PROPERTIES) -> Result<usize>;
}

Required Methods§

fn Set(&self, dwproperty: GLOBALOPT_PROPERTIES, dwvalue: usize) -> Result<()>

fn Query(&self, dwproperty: GLOBALOPT_PROPERTIES) -> Result<usize>

Object Safety§

This trait is not object safe.

Implementors§