pub trait IFsrmPropertyDefinition2_Impl: Sized + IFsrmPropertyDefinition_Impl {
    // Required methods
    fn PropertyDefinitionFlags(&self) -> Result<i32>;
    fn DisplayName(&self) -> Result<BSTR>;
    fn SetDisplayName(&self, name: &BSTR) -> Result<()>;
    fn AppliesTo(&self) -> Result<i32>;
    fn ValueDefinitions(&self) -> Result<IFsrmCollection>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§