pub trait IMFOutputPolicy_Impl: Sized + IMFAttributes_Impl {
    // Required methods
    fn GenerateRequiredSchemas(
        &self,
        dwattributes: u32,
        guidoutputsubtype: &GUID,
        rgguidprotectionschemassupported: *const GUID,
        cprotectionschemassupported: u32
    ) -> Result<IMFCollection>;
    fn GetOriginatorID(&self) -> Result<GUID>;
    fn GetMinimumGRLVersion(&self) -> Result<u32>;
}

Required Methods§

fn GenerateRequiredSchemas( &self, dwattributes: u32, guidoutputsubtype: &GUID, rgguidprotectionschemassupported: *const GUID, cprotectionschemassupported: u32 ) -> Result<IMFCollection>

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

fn GetMinimumGRLVersion(&self) -> Result<u32>

Object Safety§

This trait is not object safe.

Implementors§