pub trait ITsSbEnvironment_Impl: Sized {
    // Required methods
    fn Name(&self) -> Result<BSTR>;
    fn ServerWeight(&self) -> Result<u32>;
    fn EnvironmentPropertySet(&self) -> Result<ITsSbEnvironmentPropertySet>;
    fn SetEnvironmentPropertySet(
        &self,
        pval: Option<&ITsSbEnvironmentPropertySet>,
    ) -> Result<()>;
}

Required Methods§

fn Name(&self) -> Result<BSTR>

fn ServerWeight(&self) -> Result<u32>

fn EnvironmentPropertySet(&self) -> Result<ITsSbEnvironmentPropertySet>

fn SetEnvironmentPropertySet( &self, pval: Option<&ITsSbEnvironmentPropertySet>, ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§