pub trait IRegTreeItem_Impl: Sized {
    // Required methods
    fn GetCheckState(&self) -> Result<BOOL>;
    fn SetCheckState(&self, bcheck: BOOL) -> Result<()>;
}

Required Methods§

fn GetCheckState(&self) -> Result<BOOL>

fn SetCheckState(&self, bcheck: BOOL) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§