pub trait IAMCertifiedOutputProtection_Impl: Sized {
    // Required methods
    fn KeyExchange(
        &self,
        prandom: *mut GUID,
        varlencertgh: *mut *mut u8,
        pdwlengthcertgh: *mut u32
    ) -> Result<()>;
    fn SessionSequenceStart(&self, psig: *const AMCOPPSignature) -> Result<()>;
    fn ProtectionCommand(&self, cmd: *const AMCOPPCommand) -> Result<()>;
    fn ProtectionStatus(
        &self,
        pstatusinput: *const AMCOPPStatusInput,
        pstatusoutput: *mut AMCOPPStatusOutput
    ) -> Result<()>;
}

Required Methods§

fn KeyExchange( &self, prandom: *mut GUID, varlencertgh: *mut *mut u8, pdwlengthcertgh: *mut u32 ) -> Result<()>

fn SessionSequenceStart(&self, psig: *const AMCOPPSignature) -> Result<()>

fn ProtectionCommand(&self, cmd: *const AMCOPPCommand) -> Result<()>

fn ProtectionStatus( &self, pstatusinput: *const AMCOPPStatusInput, pstatusoutput: *mut AMCOPPStatusOutput ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§