pub trait IMetaDataValidate_Impl: Sized {
    // Required methods
    fn ValidatorInit(
        &self,
        dwmoduletype: u32,
        punk: Option<&IUnknown>
    ) -> Result<()>;
    fn ValidateMetaData(&self) -> Result<()>;
}

Required Methods§

fn ValidatorInit( &self, dwmoduletype: u32, punk: Option<&IUnknown> ) -> Result<()>

fn ValidateMetaData(&self) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§