pub trait IMFCapturePhotoConfirmation_Impl: Sized {
    // Required methods
    fn SetPhotoConfirmationCallback(
        &self,
        pnotificationcallback: Option<&IMFAsyncCallback>
    ) -> Result<()>;
    fn SetPixelFormat(&self, subtype: &GUID) -> Result<()>;
    fn GetPixelFormat(&self) -> Result<GUID>;
}

Required Methods§

fn SetPhotoConfirmationCallback( &self, pnotificationcallback: Option<&IMFAsyncCallback> ) -> Result<()>

fn SetPixelFormat(&self, subtype: &GUID) -> Result<()>

fn GetPixelFormat(&self) -> Result<GUID>

Object Safety§

This trait is not object safe.

Implementors§