pub trait IVMRVideoStreamControl_Impl: Sized {
    // Required methods
    fn SetColorKey(&self, lpclrkey: *const DDCOLORKEY) -> Result<()>;
    fn GetColorKey(&self) -> Result<DDCOLORKEY>;
    fn SetStreamActiveState(&self, factive: BOOL) -> Result<()>;
    fn GetStreamActiveState(&self) -> Result<BOOL>;
}

Required Methods§

fn SetColorKey(&self, lpclrkey: *const DDCOLORKEY) -> Result<()>

fn GetColorKey(&self) -> Result<DDCOLORKEY>

fn SetStreamActiveState(&self, factive: BOOL) -> Result<()>

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

Object Safety§

This trait is not object safe.

Implementors§