Struct IWMHeaderInfo
pub struct IWMHeaderInfo(/* private fields */);
Implementations§
§impl IWMHeaderInfo
impl IWMHeaderInfo
pub unsafe fn GetAttributeCount(&self, wstreamnum: u16) -> Result<u16>
pub unsafe fn GetAttributeByIndex( &self, windex: u16, pwstreamnum: *mut u16, pwszname: PWSTR, pcchnamelen: *mut u16, ptype: *mut WMT_ATTR_DATATYPE, pvalue: *mut u8, pcblength: *mut u16, ) -> Result<()>
pub unsafe fn GetAttributeByName<P1>(
&self,
pwstreamnum: *mut u16,
pszname: P1,
ptype: *mut WMT_ATTR_DATATYPE,
pvalue: *mut u8,
pcblength: *mut u16,
) -> Result<()>where
P1: Param<PCWSTR>,
pub unsafe fn SetAttribute<P1>(
&self,
wstreamnum: u16,
pszname: P1,
type: WMT_ATTR_DATATYPE,
pvalue: &[u8],
) -> Result<()>where
P1: Param<PCWSTR>,
pub unsafe fn GetMarkerCount(&self) -> Result<u16>
pub unsafe fn GetMarker( &self, windex: u16, pwszmarkername: PWSTR, pcchmarkernamelen: *mut u16, pcnsmarkertime: *mut u64, ) -> Result<()>
pub unsafe fn AddMarker<P0>(
&self,
pwszmarkername: P0,
cnsmarkertime: u64,
) -> Result<()>where
P0: Param<PCWSTR>,
pub unsafe fn RemoveMarker(&self, windex: u16) -> Result<()>
pub unsafe fn GetScriptCount(&self) -> Result<u16>
pub unsafe fn GetScript( &self, windex: u16, pwsztype: PWSTR, pcchtypelen: *mut u16, pwszcommand: PWSTR, pcchcommandlen: *mut u16, pcnsscripttime: *mut u64, ) -> Result<()>
pub unsafe fn AddScript<P0, P1>(
&self,
pwsztype: P0,
pwszcommand: P1,
cnsscripttime: u64,
) -> Result<()>where
P0: Param<PCWSTR>,
P1: Param<PCWSTR>,
pub unsafe fn RemoveScript(&self, windex: u16) -> Result<()>
Trait Implementations§
§impl CanInto<IUnknown> for IWMHeaderInfo
impl CanInto<IUnknown> for IWMHeaderInfo
§impl CanInto<IWMHeaderInfo> for IWMHeaderInfo2
impl CanInto<IWMHeaderInfo> for IWMHeaderInfo2
§impl CanInto<IWMHeaderInfo> for IWMHeaderInfo3
impl CanInto<IWMHeaderInfo> for IWMHeaderInfo3
§impl Clone for IWMHeaderInfo
impl Clone for IWMHeaderInfo
§fn clone(&self) -> IWMHeaderInfo
fn clone(&self) -> IWMHeaderInfo
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more§impl Debug for IWMHeaderInfo
impl Debug for IWMHeaderInfo
§impl From<&IWMHeaderInfo> for &IUnknown
impl From<&IWMHeaderInfo> for &IUnknown
§fn from(value: &IWMHeaderInfo) -> Self
fn from(value: &IWMHeaderInfo) -> Self
Converts to this type from the input type.
§impl From<&IWMHeaderInfo2> for &IWMHeaderInfo
impl From<&IWMHeaderInfo2> for &IWMHeaderInfo
§fn from(value: &IWMHeaderInfo2) -> Self
fn from(value: &IWMHeaderInfo2) -> Self
Converts to this type from the input type.
§impl From<&IWMHeaderInfo3> for &IWMHeaderInfo
impl From<&IWMHeaderInfo3> for &IWMHeaderInfo
§fn from(value: &IWMHeaderInfo3) -> Self
fn from(value: &IWMHeaderInfo3) -> Self
Converts to this type from the input type.
§impl From<IWMHeaderInfo> for IUnknown
impl From<IWMHeaderInfo> for IUnknown
§fn from(value: IWMHeaderInfo) -> Self
fn from(value: IWMHeaderInfo) -> Self
Converts to this type from the input type.
§impl From<IWMHeaderInfo2> for IWMHeaderInfo
impl From<IWMHeaderInfo2> for IWMHeaderInfo
§fn from(value: IWMHeaderInfo2) -> Self
fn from(value: IWMHeaderInfo2) -> Self
Converts to this type from the input type.
§impl From<IWMHeaderInfo3> for IWMHeaderInfo
impl From<IWMHeaderInfo3> for IWMHeaderInfo
§fn from(value: IWMHeaderInfo3) -> Self
fn from(value: IWMHeaderInfo3) -> Self
Converts to this type from the input type.
§impl Interface for IWMHeaderInfo
impl Interface for IWMHeaderInfo
§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 PartialEq for IWMHeaderInfo
impl PartialEq for IWMHeaderInfo
impl Eq for IWMHeaderInfo
impl StructuralPartialEq for IWMHeaderInfo
Auto Trait Implementations§
impl Freeze for IWMHeaderInfo
impl RefUnwindSafe for IWMHeaderInfo
impl !Send for IWMHeaderInfo
impl !Sync for IWMHeaderInfo
impl Unpin for IWMHeaderInfo
impl UnwindSafe for IWMHeaderInfo
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