windows::Win32::Media::MediaFoundation

Trait IMFNetCredentialManager_Impl

pub trait IMFNetCredentialManager_Impl: IUnknownImpl {
    // Required methods
    fn BeginGetCredentials(
        &self,
        pparam: *const MFNetCredentialManagerGetParam,
        pcallback: Ref<'_, IMFAsyncCallback>,
        pstate: Ref<'_, IUnknown>,
    ) -> Result<()>;
    fn EndGetCredentials(
        &self,
        presult: Ref<'_, IMFAsyncResult>,
    ) -> Result<IMFNetCredential>;
    fn SetGood(
        &self,
        pcred: Ref<'_, IMFNetCredential>,
        fgood: BOOL,
    ) -> Result<()>;
}

Required Methods§

fn BeginGetCredentials( &self, pparam: *const MFNetCredentialManagerGetParam, pcallback: Ref<'_, IMFAsyncCallback>, pstate: Ref<'_, IUnknown>, ) -> Result<()>

fn EndGetCredentials( &self, presult: Ref<'_, IMFAsyncResult>, ) -> Result<IMFNetCredential>

fn SetGood(&self, pcred: Ref<'_, IMFNetCredential>, fgood: BOOL) -> 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§