pub trait IFsrmFileScreenException_Impl: Sized + IFsrmObject_Impl {
    // Required methods
    fn Path(&self) -> Result<BSTR>;
    fn AllowedFileGroups(&self) -> Result<IFsrmMutableCollection>;
    fn SetAllowedFileGroups(
        &self,
        allowlist: Option<&IFsrmMutableCollection>
    ) -> Result<()>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§