pub trait IEVRTrustedVideoPlugin_Impl: Sized {
    // Required methods
    fn IsInTrustedVideoMode(&self) -> Result<BOOL>;
    fn CanConstrict(&self) -> Result<BOOL>;
    fn SetConstriction(&self, dwkpix: u32) -> Result<()>;
    fn DisableImageExport(&self, bdisable: BOOL) -> Result<()>;
}

Required Methods§

fn IsInTrustedVideoMode(&self) -> Result<BOOL>

fn CanConstrict(&self) -> Result<BOOL>

fn SetConstriction(&self, dwkpix: u32) -> Result<()>

fn DisableImageExport(&self, bdisable: BOOL) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§