windows::Win32::Media::MediaPlayer

Trait IWMPStringCollection2_Impl

pub trait IWMPStringCollection2_Impl: IWMPStringCollection_Impl {
    // Required methods
    fn isIdentical(
        &self,
        piwmpstringcollection2: Ref<'_, IWMPStringCollection2>,
        pvbool: *mut VARIANT_BOOL,
    ) -> Result<()>;
    fn getItemInfo(
        &self,
        lcollectionindex: i32,
        bstritemname: &BSTR,
        pbstrvalue: *mut BSTR,
    ) -> Result<()>;
    fn getAttributeCountByType(
        &self,
        lcollectionindex: i32,
        bstrtype: &BSTR,
        bstrlanguage: &BSTR,
        plcount: *mut i32,
    ) -> Result<()>;
    fn getItemInfoByType(
        &self,
        lcollectionindex: i32,
        bstrtype: &BSTR,
        bstrlanguage: &BSTR,
        lattributeindex: i32,
        pvarvalue: *mut VARIANT,
    ) -> Result<()>;
}

Required Methods§

fn isIdentical( &self, piwmpstringcollection2: Ref<'_, IWMPStringCollection2>, pvbool: *mut VARIANT_BOOL, ) -> Result<()>

fn getItemInfo( &self, lcollectionindex: i32, bstritemname: &BSTR, pbstrvalue: *mut BSTR, ) -> Result<()>

fn getAttributeCountByType( &self, lcollectionindex: i32, bstrtype: &BSTR, bstrlanguage: &BSTR, plcount: *mut i32, ) -> Result<()>

fn getItemInfoByType( &self, lcollectionindex: i32, bstrtype: &BSTR, bstrlanguage: &BSTR, lattributeindex: i32, pvarvalue: *mut VARIANT, ) -> 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§