windows::Win32::Storage::FileServerResourceManager

Trait IFsrmFileScreenTemplateManager_Impl

pub trait IFsrmFileScreenTemplateManager_Impl: 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>

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.

Implementors§