pub trait IIsdbCAContractInformationDescriptor_Impl: Sized {
    // Required methods
    fn GetTag(&self) -> Result<u8>;
    fn GetLength(&self) -> Result<u8>;
    fn GetCASystemId(&self) -> Result<u16>;
    fn GetCAUnitId(&self) -> Result<u8>;
    fn GetCountOfRecords(&self) -> Result<u8>;
    fn GetRecordComponentTag(&self, brecordindex: u8) -> Result<u8>;
    fn GetContractVerificationInfoLength(&self) -> Result<u8>;
    fn GetContractVerificationInfo(&self, bbuflength: u8) -> Result<u8>;
    fn GetFeeNameW(&self, convmode: DVB_STRCONV_MODE) -> Result<BSTR>;
}

Required Methods§

fn GetTag(&self) -> Result<u8>

fn GetLength(&self) -> Result<u8>

fn GetCASystemId(&self) -> Result<u16>

fn GetCAUnitId(&self) -> Result<u8>

fn GetCountOfRecords(&self) -> Result<u8>

fn GetRecordComponentTag(&self, brecordindex: u8) -> Result<u8>

fn GetContractVerificationInfoLength(&self) -> Result<u8>

fn GetContractVerificationInfo(&self, bbuflength: u8) -> Result<u8>

fn GetFeeNameW(&self, convmode: DVB_STRCONV_MODE) -> Result<BSTR>

Object Safety§

This trait is not object safe.

Implementors§