windows::Win32::Networking::ActiveDirectory

Trait IADsFileShare_Impl

pub trait IADsFileShare_Impl: 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<()>

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.

Implementors§