Struct IWMProfile
pub struct IWMProfile(/* private fields */);
Implementations§
§impl IWMProfile
impl IWMProfile
pub unsafe fn GetVersion(&self) -> Result<WMT_VERSION>
pub unsafe fn GetName(&self, pwszname: PWSTR, pcchname: *mut u32) -> Result<()>
pub unsafe fn SetName<P0>(&self, pwszname: P0) -> Result<()>where
P0: Param<PCWSTR>,
pub unsafe fn GetDescription( &self, pwszdescription: PWSTR, pcchdescription: *mut u32, ) -> Result<()>
pub unsafe fn SetDescription<P0>(&self, pwszdescription: P0) -> Result<()>where
P0: Param<PCWSTR>,
pub unsafe fn GetStreamCount(&self) -> Result<u32>
pub unsafe fn GetStream(&self, dwstreamindex: u32) -> Result<IWMStreamConfig>
pub unsafe fn GetStreamByNumber( &self, wstreamnum: u16, ) -> Result<IWMStreamConfig>
pub unsafe fn RemoveStream<P0>(&self, pconfig: P0) -> Result<()>where
P0: Param<IWMStreamConfig>,
pub unsafe fn RemoveStreamByNumber(&self, wstreamnum: u16) -> Result<()>
pub unsafe fn AddStream<P0>(&self, pconfig: P0) -> Result<()>where
P0: Param<IWMStreamConfig>,
pub unsafe fn ReconfigStream<P0>(&self, pconfig: P0) -> Result<()>where
P0: Param<IWMStreamConfig>,
pub unsafe fn CreateNewStream( &self, guidstreamtype: *const GUID, ) -> Result<IWMStreamConfig>
pub unsafe fn GetMutualExclusionCount(&self) -> Result<u32>
pub unsafe fn GetMutualExclusion( &self, dwmeindex: u32, ) -> Result<IWMMutualExclusion>
pub unsafe fn RemoveMutualExclusion<P0>(&self, pme: P0) -> Result<()>where
P0: Param<IWMMutualExclusion>,
pub unsafe fn AddMutualExclusion<P0>(&self, pme: P0) -> Result<()>where
P0: Param<IWMMutualExclusion>,
pub unsafe fn CreateNewMutualExclusion(&self) -> Result<IWMMutualExclusion>
Trait Implementations§
§impl CanInto<IUnknown> for IWMProfile
impl CanInto<IUnknown> for IWMProfile
§impl CanInto<IWMProfile> for IWMProfile2
impl CanInto<IWMProfile> for IWMProfile2
§impl CanInto<IWMProfile> for IWMProfile3
impl CanInto<IWMProfile> for IWMProfile3
§impl Clone for IWMProfile
impl Clone for IWMProfile
§fn clone(&self) -> IWMProfile
fn clone(&self) -> IWMProfile
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 IWMProfile
impl Debug for IWMProfile
§impl From<&IWMProfile> for &IUnknown
impl From<&IWMProfile> for &IUnknown
§fn from(value: &IWMProfile) -> Self
fn from(value: &IWMProfile) -> Self
Converts to this type from the input type.
§impl From<&IWMProfile2> for &IWMProfile
impl From<&IWMProfile2> for &IWMProfile
§fn from(value: &IWMProfile2) -> Self
fn from(value: &IWMProfile2) -> Self
Converts to this type from the input type.
§impl From<&IWMProfile3> for &IWMProfile
impl From<&IWMProfile3> for &IWMProfile
§fn from(value: &IWMProfile3) -> Self
fn from(value: &IWMProfile3) -> Self
Converts to this type from the input type.
§impl From<IWMProfile> for IUnknown
impl From<IWMProfile> for IUnknown
§fn from(value: IWMProfile) -> Self
fn from(value: IWMProfile) -> Self
Converts to this type from the input type.
§impl From<IWMProfile2> for IWMProfile
impl From<IWMProfile2> for IWMProfile
§fn from(value: IWMProfile2) -> Self
fn from(value: IWMProfile2) -> Self
Converts to this type from the input type.
§impl From<IWMProfile3> for IWMProfile
impl From<IWMProfile3> for IWMProfile
§fn from(value: IWMProfile3) -> Self
fn from(value: IWMProfile3) -> Self
Converts to this type from the input type.
§impl Interface for IWMProfile
impl Interface for IWMProfile
§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 IWMProfile
impl PartialEq for IWMProfile
impl Eq for IWMProfile
impl StructuralPartialEq for IWMProfile
Auto Trait Implementations§
impl Freeze for IWMProfile
impl RefUnwindSafe for IWMProfile
impl !Send for IWMProfile
impl !Sync for IWMProfile
impl Unpin for IWMProfile
impl UnwindSafe for IWMProfile
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