windows::Win32::Devices::Tapi

Trait ITDirectoryObject_Impl

pub trait ITDirectoryObject_Impl: IDispatch_Impl {
    // Required methods
    fn ObjectType(&self) -> Result<DIRECTORY_OBJECT_TYPE>;
    fn Name(&self) -> Result<BSTR>;
    fn SetName(&self, pname: &BSTR) -> Result<()>;
    fn get_DialableAddrs(&self, dwaddresstype: i32) -> Result<VARIANT>;
    fn EnumerateDialableAddrs(
        &self,
        dwaddresstype: u32,
    ) -> Result<IEnumDialableAddrs>;
    fn SecurityDescriptor(&self) -> Result<IDispatch>;
    fn SetSecurityDescriptor(&self, psecdes: Ref<'_, IDispatch>) -> Result<()>;
}

Required Methods§

fn ObjectType(&self) -> Result<DIRECTORY_OBJECT_TYPE>

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

fn SetName(&self, pname: &BSTR) -> Result<()>

fn get_DialableAddrs(&self, dwaddresstype: i32) -> Result<VARIANT>

fn EnumerateDialableAddrs( &self, dwaddresstype: u32, ) -> Result<IEnumDialableAddrs>

fn SecurityDescriptor(&self) -> Result<IDispatch>

fn SetSecurityDescriptor(&self, psecdes: Ref<'_, IDispatch>) -> 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§