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

Required Methods§

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

fn EndGetCredentials( &self, presult: Option<&IMFAsyncResult>, ) -> Result<IMFNetCredential>

fn SetGood(&self, pcred: Option<&IMFNetCredential>, fgood: BOOL) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§