pub trait IWSDHttpAddress_Impl: Sized + IWSDTransportAddress_Impl {
    // Required methods
    fn GetSecure(&self) -> Result<()>;
    fn SetSecure(&self, fsecure: BOOL) -> Result<()>;
    fn GetPath(&self) -> Result<PCWSTR>;
    fn SetPath(&self, pszpath: &PCWSTR) -> Result<()>;
}

Required Methods§

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

fn SetSecure(&self, fsecure: BOOL) -> Result<()>

fn GetPath(&self) -> Result<PCWSTR>

fn SetPath(&self, pszpath: &PCWSTR) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§