Struct IWMHeaderInfo2
pub struct IWMHeaderInfo2(/* private fields */);
Implementations§
§impl IWMHeaderInfo2
impl IWMHeaderInfo2
pub unsafe fn GetCodecInfoCount(&self) -> Result<u32>
pub unsafe fn GetCodecInfo( &self, windex: u32, pcchname: *mut u16, pwszname: PWSTR, pcchdescription: *mut u16, pwszdescription: PWSTR, pcodectype: *mut WMT_CODEC_INFO_TYPE, pcbcodecinfo: *mut u16, pbcodecinfo: *mut u8, ) -> Result<()>
Methods from Deref<Target = 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 IWMHeaderInfo2
impl CanInto<IUnknown> for IWMHeaderInfo2
§impl CanInto<IWMHeaderInfo> for IWMHeaderInfo2
impl CanInto<IWMHeaderInfo> for IWMHeaderInfo2
§impl CanInto<IWMHeaderInfo2> for IWMHeaderInfo3
impl CanInto<IWMHeaderInfo2> for IWMHeaderInfo3
§impl Clone for IWMHeaderInfo2
impl Clone for IWMHeaderInfo2
§fn clone(&self) -> IWMHeaderInfo2
fn clone(&self) -> IWMHeaderInfo2
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 IWMHeaderInfo2
impl Debug for IWMHeaderInfo2
§impl Deref for IWMHeaderInfo2
impl Deref for IWMHeaderInfo2
§impl From<&IWMHeaderInfo2> for &IUnknown
impl From<&IWMHeaderInfo2> for &IUnknown
§fn from(value: &IWMHeaderInfo2) -> Self
fn from(value: &IWMHeaderInfo2) -> 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 &IWMHeaderInfo2
impl From<&IWMHeaderInfo3> for &IWMHeaderInfo2
§fn from(value: &IWMHeaderInfo3) -> Self
fn from(value: &IWMHeaderInfo3) -> Self
Converts to this type from the input type.
§impl From<IWMHeaderInfo2> for IUnknown
impl From<IWMHeaderInfo2> for IUnknown
§fn from(value: IWMHeaderInfo2) -> Self
fn from(value: IWMHeaderInfo2) -> 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 IWMHeaderInfo2
impl From<IWMHeaderInfo3> for IWMHeaderInfo2
§fn from(value: IWMHeaderInfo3) -> Self
fn from(value: IWMHeaderInfo3) -> Self
Converts to this type from the input type.
§impl Interface for IWMHeaderInfo2
impl Interface for IWMHeaderInfo2
§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 IWMHeaderInfo2
impl PartialEq for IWMHeaderInfo2
impl Eq for IWMHeaderInfo2
impl StructuralPartialEq for IWMHeaderInfo2
Auto Trait Implementations§
impl Freeze for IWMHeaderInfo2
impl RefUnwindSafe for IWMHeaderInfo2
impl !Send for IWMHeaderInfo2
impl !Sync for IWMHeaderInfo2
impl Unpin for IWMHeaderInfo2
impl UnwindSafe for IWMHeaderInfo2
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