pub trait IWindowsMediaLibrarySharingDeviceProperties_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn get_Item(
        &self,
        index: i32,
    ) -> Result<IWindowsMediaLibrarySharingDeviceProperty>;
    fn Count(&self) -> Result<i32>;
    fn GetProperty(
        &self,
        name: &BSTR,
    ) -> Result<IWindowsMediaLibrarySharingDeviceProperty>;
}

Required Methods§

fn get_Item( &self, index: i32, ) -> Result<IWindowsMediaLibrarySharingDeviceProperty>

fn Count(&self) -> Result<i32>

fn GetProperty( &self, name: &BSTR, ) -> Result<IWindowsMediaLibrarySharingDeviceProperty>

Object Safety§

This trait is not object safe.

Implementors§