pub trait IFsrmFileScreenTemplateManager_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn CreateTemplate(&self) -> Result<IFsrmFileScreenTemplate>;
    fn GetTemplate(&self, name: &BSTR) -> Result<IFsrmFileScreenTemplate>;
    fn EnumTemplates(
        &self,
        options: FsrmEnumOptions
    ) -> Result<IFsrmCommittableCollection>;
    fn ExportTemplates(
        &self,
        filescreentemplatenamesarray: *const VARIANT
    ) -> Result<BSTR>;
    fn ImportTemplates(
        &self,
        serializedfilescreentemplates: &BSTR,
        filescreentemplatenamesarray: *const VARIANT
    ) -> Result<IFsrmCommittableCollection>;
}

Required Methods§

fn CreateTemplate(&self) -> Result<IFsrmFileScreenTemplate>

fn GetTemplate(&self, name: &BSTR) -> Result<IFsrmFileScreenTemplate>

fn EnumTemplates( &self, options: FsrmEnumOptions ) -> Result<IFsrmCommittableCollection>

fn ExportTemplates( &self, filescreentemplatenamesarray: *const VARIANT ) -> Result<BSTR>

fn ImportTemplates( &self, serializedfilescreentemplates: &BSTR, filescreentemplatenamesarray: *const VARIANT ) -> Result<IFsrmCommittableCollection>

Object Safety§

This trait is not object safe.

Implementors§