pub trait IADsFileShare_Impl: Sized + IADs_Impl {
    // Required methods
    fn CurrentUserCount(&self) -> Result<i32>;
    fn Description(&self) -> Result<BSTR>;
    fn SetDescription(&self, bstrdescription: &BSTR) -> Result<()>;
    fn HostComputer(&self) -> Result<BSTR>;
    fn SetHostComputer(&self, bstrhostcomputer: &BSTR) -> Result<()>;
    fn Path(&self) -> Result<BSTR>;
    fn SetPath(&self, bstrpath: &BSTR) -> Result<()>;
    fn MaxUserCount(&self) -> Result<i32>;
    fn SetMaxUserCount(&self, lnmaxusercount: i32) -> Result<()>;
}

Required Methods§

fn CurrentUserCount(&self) -> Result<i32>

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

fn SetDescription(&self, bstrdescription: &BSTR) -> Result<()>

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

fn SetHostComputer(&self, bstrhostcomputer: &BSTR) -> Result<()>

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

fn SetPath(&self, bstrpath: &BSTR) -> Result<()>

fn MaxUserCount(&self) -> Result<i32>

fn SetMaxUserCount(&self, lnmaxusercount: i32) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§