Trait IFsrmFileGroup_Impl
pub trait IFsrmFileGroup_Impl: IFsrmObject_Impl {
// Required methods
fn Name(&self) -> Result<BSTR>;
fn SetName(&self, name: &BSTR) -> Result<()>;
fn Members(&self) -> Result<IFsrmMutableCollection>;
fn SetMembers(&self, members: Ref<'_, IFsrmMutableCollection>) -> Result<()>;
fn NonMembers(&self) -> Result<IFsrmMutableCollection>;
fn SetNonMembers(
&self,
nonmembers: Ref<'_, IFsrmMutableCollection>,
) -> Result<()>;
}
Required Methods§
fn Name(&self) -> Result<BSTR>
fn SetName(&self, name: &BSTR) -> Result<()>
fn Members(&self) -> Result<IFsrmMutableCollection>
fn SetMembers(&self, members: Ref<'_, IFsrmMutableCollection>) -> Result<()>
fn NonMembers(&self) -> Result<IFsrmMutableCollection>
fn SetNonMembers( &self, nonmembers: Ref<'_, IFsrmMutableCollection>, ) -> Result<()>
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.