Trait INameSpaceTreeControl2_Impl
pub trait INameSpaceTreeControl2_Impl: INameSpaceTreeControl_Impl {
    // Required methods
    fn SetControlStyle(&self, nstcsmask: u32, nstcsstyle: u32) -> Result<()>;
    fn GetControlStyle(&self, nstcsmask: u32) -> Result<u32>;
    fn SetControlStyle2(
        &self,
        nstcsmask: NSTCSTYLE2,
        nstcsstyle: NSTCSTYLE2,
    ) -> Result<()>;
    fn GetControlStyle2(&self, nstcsmask: NSTCSTYLE2) -> Result<NSTCSTYLE2>;
}Required Methods§
fn SetControlStyle(&self, nstcsmask: u32, nstcsstyle: u32) -> Result<()>
fn GetControlStyle(&self, nstcsmask: u32) -> Result<u32>
fn SetControlStyle2( &self, nstcsmask: NSTCSTYLE2, nstcsstyle: NSTCSTYLE2, ) -> Result<()>
fn GetControlStyle2(&self, nstcsmask: NSTCSTYLE2) -> Result<NSTCSTYLE2>
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.