pub trait IMFMediaKeySystemAccess_Impl: Sized {
    // Required methods
    fn CreateMediaKeys(
        &self,
        pcdmcustomconfig: Option<&IPropertyStore>
    ) -> Result<IMFMediaKeys2>;
    fn SupportedConfiguration(&self) -> Result<IPropertyStore>;
    fn KeySystem(&self) -> Result<BSTR>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§