pub trait IESFileExpiryDateEvent_Impl: Sized + IESEvent_Impl {
    // Required methods
    fn GetTunerId(&self) -> Result<GUID>;
    fn GetExpiryDate(&self) -> Result<u64>;
    fn GetFinalExpiryDate(&self) -> Result<u64>;
    fn GetMaxRenewalCount(&self) -> Result<u32>;
    fn IsEntitlementTokenPresent(&self) -> Result<BOOL>;
    fn DoesExpireAfterFirstUse(&self) -> Result<BOOL>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§