pub trait IMFTrustedOutput_Impl: Sized {
    // Required methods
    fn GetOutputTrustAuthorityCount(&self) -> Result<u32>;
    fn GetOutputTrustAuthorityByIndex(
        &self,
        dwindex: u32
    ) -> Result<IMFOutputTrustAuthority>;
    fn IsFinal(&self) -> Result<BOOL>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§