Trait IGPMGPOLink_Impl
pub trait IGPMGPOLink_Impl: IDispatch_Impl {
// Required methods
fn GPOID(&self) -> Result<BSTR>;
fn GPODomain(&self) -> Result<BSTR>;
fn Enabled(&self) -> Result<VARIANT_BOOL>;
fn SetEnabled(&self, newval: VARIANT_BOOL) -> Result<()>;
fn Enforced(&self) -> Result<VARIANT_BOOL>;
fn SetEnforced(&self, newval: VARIANT_BOOL) -> Result<()>;
fn SOMLinkOrder(&self) -> Result<i32>;
fn SOM(&self) -> Result<IGPMSOM>;
fn Delete(&self) -> Result<()>;
}
Required Methods§
fn GPOID(&self) -> Result<BSTR>
fn GPODomain(&self) -> Result<BSTR>
fn Enabled(&self) -> Result<VARIANT_BOOL>
fn SetEnabled(&self, newval: VARIANT_BOOL) -> Result<()>
fn Enforced(&self) -> Result<VARIANT_BOOL>
fn SetEnforced(&self, newval: VARIANT_BOOL) -> Result<()>
fn SOMLinkOrder(&self) -> Result<i32>
fn SOM(&self) -> Result<IGPMSOM>
fn Delete(&self) -> Result<()>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.