pub trait IFsrmFileScreenManager_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn ActionVariables(&self) -> Result<*mut SAFEARRAY>;
    fn ActionVariableDescriptions(&self) -> Result<*mut SAFEARRAY>;
    fn CreateFileScreen(&self, path: &BSTR) -> Result<IFsrmFileScreen>;
    fn GetFileScreen(&self, path: &BSTR) -> Result<IFsrmFileScreen>;
    fn EnumFileScreens(
        &self,
        path: &BSTR,
        options: FsrmEnumOptions
    ) -> Result<IFsrmCommittableCollection>;
    fn CreateFileScreenException(
        &self,
        path: &BSTR
    ) -> Result<IFsrmFileScreenException>;
    fn GetFileScreenException(
        &self,
        path: &BSTR
    ) -> Result<IFsrmFileScreenException>;
    fn EnumFileScreenExceptions(
        &self,
        path: &BSTR,
        options: FsrmEnumOptions
    ) -> Result<IFsrmCommittableCollection>;
    fn CreateFileScreenCollection(&self) -> Result<IFsrmCommittableCollection>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§