Struct ISCTE_EAS
pub struct ISCTE_EAS(/* private fields */);
Implementations§
§impl ISCTE_EAS
impl ISCTE_EAS
pub unsafe fn Initialize<P0, P1>(
&self,
psectionlist: P0,
pmpegdata: P1,
) -> Result<()>where
P0: Param<ISectionList>,
P1: Param<IMpeg2Data>,
pub unsafe fn GetVersionNumber(&self) -> Result<u8>
pub unsafe fn GetSequencyNumber(&self) -> Result<u8>
pub unsafe fn GetProtocolVersion(&self) -> Result<u8>
pub unsafe fn GetEASEventID(&self) -> Result<u16>
pub unsafe fn GetOriginatorCode(&self) -> Result<u8>
pub unsafe fn GetEASEventCodeLen(&self) -> Result<u8>
pub unsafe fn GetEASEventCode(&self) -> Result<u8>
pub unsafe fn GetRawNatureOfActivationTextLen(&self) -> Result<u8>
pub unsafe fn GetRawNatureOfActivationText(&self) -> Result<u8>
pub unsafe fn GetNatureOfActivationText( &self, bstris0639code: &BSTR, ) -> Result<BSTR>
pub unsafe fn GetTimeRemaining(&self) -> Result<u8>
pub unsafe fn GetStartTime(&self) -> Result<u32>
pub unsafe fn GetDuration(&self) -> Result<u16>
pub unsafe fn GetAlertPriority(&self) -> Result<u8>
pub unsafe fn GetDetailsOOBSourceID(&self) -> Result<u16>
pub unsafe fn GetDetailsMajor(&self) -> Result<u16>
pub unsafe fn GetDetailsMinor(&self) -> Result<u16>
pub unsafe fn GetDetailsAudioOOBSourceID(&self) -> Result<u16>
pub unsafe fn GetAlertText(&self, bstris0639code: &BSTR) -> Result<BSTR>
pub unsafe fn GetRawAlertTextLen(&self) -> Result<u16>
pub unsafe fn GetRawAlertText(&self) -> Result<u8>
pub unsafe fn GetLocationCount(&self) -> Result<u8>
pub unsafe fn GetLocationCodes( &self, bindex: u8, pbstate: *mut u8, pbcountysubdivision: *mut u8, pwcounty: *mut u16, ) -> Result<()>
pub unsafe fn GetExceptionCount(&self) -> Result<u8>
pub unsafe fn GetExceptionService( &self, bindex: u8, pbibref: *mut u8, pwfirst: *mut u16, pwsecond: *mut u16, ) -> Result<()>
pub unsafe fn GetCountOfTableDescriptors(&self) -> Result<u32>
pub unsafe fn GetTableDescriptorByIndex( &self, dwindex: u32, ) -> Result<IGenericDescriptor>
pub unsafe fn GetTableDescriptorByTag( &self, btag: u8, pdwcookie: *mut u32, ppdescriptor: *mut Option<IGenericDescriptor>, ) -> Result<()>
Trait Implementations§
§impl Interface for ISCTE_EAS
impl Interface for ISCTE_EAS
§fn as_raw(&self) -> *mut c_void
fn as_raw(&self) -> *mut c_void
Returns the raw COM interface pointer. The resulting pointer continues to be owned by the
Interface
implementation.§fn into_raw(self) -> *mut c_void
fn into_raw(self) -> *mut c_void
Returns the raw COM interface pointer and releases ownership. It the caller’s responsibility to release the COM interface pointer.
§unsafe fn from_raw_borrowed(raw: &*mut c_void) -> Option<&Self>
unsafe fn from_raw_borrowed(raw: &*mut c_void) -> Option<&Self>
§fn cast<T>(&self) -> Result<T, Error>where
T: Interface,
fn cast<T>(&self) -> Result<T, Error>where
T: Interface,
Attempts to cast the current interface to another interface using
QueryInterface
. Read more§fn cast_to_any<T>(&self) -> Result<&(dyn Any + 'static), Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn cast_to_any<T>(&self) -> Result<&(dyn Any + 'static), Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
This casts the given COM interface to [
&dyn Any
]. Read more§fn is_object<T>(&self) -> boolwhere
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn is_object<T>(&self) -> boolwhere
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
§fn cast_object_ref<T>(&self) -> Result<&<T as ComObjectInner>::Outer, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn cast_object_ref<T>(&self) -> Result<&<T as ComObjectInner>::Outer, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
This casts the given COM interface to [
&dyn Any
]. It returns a reference to the “outer”
object, e.g. &MyApp_Impl
, not the inner &MyApp
object. Read more§fn cast_object<T>(&self) -> Result<ComObject<T>, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn cast_object<T>(&self) -> Result<ComObject<T>, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
This casts the given COM interface to [
&dyn Any
]. It returns a reference to the “outer”
object, e.g. MyApp_Impl
, not the inner MyApp
object. Read more§fn downgrade(&self) -> Result<Weak<Self>, Error>
fn downgrade(&self) -> Result<Weak<Self>, Error>
Attempts to create a [
Weak
] reference to this object.impl Eq for ISCTE_EAS
impl StructuralPartialEq for ISCTE_EAS
Auto Trait Implementations§
impl Freeze for ISCTE_EAS
impl RefUnwindSafe for ISCTE_EAS
impl !Send for ISCTE_EAS
impl !Sync for ISCTE_EAS
impl Unpin for ISCTE_EAS
impl UnwindSafe for ISCTE_EAS
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more