windows::Win32::Media::MediaPlayer

Trait IXFeed2_Impl

pub trait IXFeed2_Impl: IXFeed_Impl {
    // Required methods
    fn GetItemByEffectiveId(
        &self,
        uieffectiveid: u32,
        riid: *const GUID,
        ppv: *mut *mut c_void,
    ) -> Result<()>;
    fn LastItemDownloadTime(&self) -> Result<SYSTEMTIME>;
    fn Username(&self) -> Result<PWSTR>;
    fn Password(&self) -> Result<PWSTR>;
    fn SetCredentials(
        &self,
        pszusername: &PCWSTR,
        pszpassword: &PCWSTR,
    ) -> Result<()>;
    fn ClearCredentials(&self) -> Result<()>;
}

Required Methods§

fn GetItemByEffectiveId( &self, uieffectiveid: u32, riid: *const GUID, ppv: *mut *mut c_void, ) -> Result<()>

fn LastItemDownloadTime(&self) -> Result<SYSTEMTIME>

fn Username(&self) -> Result<PWSTR>

fn Password(&self) -> Result<PWSTR>

fn SetCredentials( &self, pszusername: &PCWSTR, pszpassword: &PCWSTR, ) -> Result<()>

fn ClearCredentials(&self) -> 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§