pub trait ISharingConfigurationManager_Impl: Sized {
    // Required methods
    fn CreateShare(&self, dsid: DEF_SHARE_ID, role: SHARE_ROLE) -> Result<()>;
    fn DeleteShare(&self, dsid: DEF_SHARE_ID) -> Result<()>;
    fn ShareExists(&self, dsid: DEF_SHARE_ID) -> Result<()>;
    fn GetSharePermissions(&self, dsid: DEF_SHARE_ID) -> Result<SHARE_ROLE>;
    fn SharePrinters(&self) -> Result<()>;
    fn StopSharingPrinters(&self) -> Result<()>;
    fn ArePrintersShared(&self) -> Result<()>;
}

Required Methods§

fn CreateShare(&self, dsid: DEF_SHARE_ID, role: SHARE_ROLE) -> Result<()>

fn DeleteShare(&self, dsid: DEF_SHARE_ID) -> Result<()>

fn ShareExists(&self, dsid: DEF_SHARE_ID) -> Result<()>

fn GetSharePermissions(&self, dsid: DEF_SHARE_ID) -> Result<SHARE_ROLE>

fn SharePrinters(&self) -> Result<()>

fn StopSharingPrinters(&self) -> Result<()>

fn ArePrintersShared(&self) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§