Trait IADsPath_Impl
pub trait IADsPath_Impl: IDispatch_Impl {
// Required methods
fn Type(&self) -> Result<i32>;
fn SetType(&self, lntype: i32) -> Result<()>;
fn VolumeName(&self) -> Result<BSTR>;
fn SetVolumeName(&self, bstrvolumename: &BSTR) -> Result<()>;
fn Path(&self) -> Result<BSTR>;
fn SetPath(&self, bstrpath: &BSTR) -> Result<()>;
}
Required Methods§
fn Type(&self) -> Result<i32>
fn SetType(&self, lntype: i32) -> Result<()>
fn VolumeName(&self) -> Result<BSTR>
fn SetVolumeName(&self, bstrvolumename: &BSTR) -> Result<()>
fn Path(&self) -> Result<BSTR>
fn SetPath(&self, bstrpath: &BSTR) -> 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.