Struct IWMProfile3
pub struct IWMProfile3(/* private fields */);
Implementations§
§impl IWMProfile3
impl IWMProfile3
pub unsafe fn GetStorageFormat(&self) -> Result<WMT_STORAGE_FORMAT>
pub unsafe fn SetStorageFormat( &self, nstorageformat: WMT_STORAGE_FORMAT, ) -> Result<()>
pub unsafe fn GetBandwidthSharingCount(&self) -> Result<u32>
pub unsafe fn GetBandwidthSharing( &self, dwbsindex: u32, ) -> Result<IWMBandwidthSharing>
pub unsafe fn RemoveBandwidthSharing<P0>(&self, pbs: P0) -> Result<()>where
P0: Param<IWMBandwidthSharing>,
pub unsafe fn AddBandwidthSharing<P0>(&self, pbs: P0) -> Result<()>where
P0: Param<IWMBandwidthSharing>,
pub unsafe fn CreateNewBandwidthSharing(&self) -> Result<IWMBandwidthSharing>
pub unsafe fn GetStreamPrioritization(&self) -> Result<IWMStreamPrioritization>
pub unsafe fn SetStreamPrioritization<P0>(&self, psp: P0) -> Result<()>where
P0: Param<IWMStreamPrioritization>,
pub unsafe fn RemoveStreamPrioritization(&self) -> Result<()>
pub unsafe fn CreateNewStreamPrioritization( &self, ) -> Result<IWMStreamPrioritization>
pub unsafe fn GetExpectedPacketCount(&self, msduration: u64) -> Result<u64>
Methods from Deref<Target = IWMProfile2>§
pub unsafe fn GetProfileID(&self) -> Result<GUID>
Methods from Deref<Target = 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 IWMProfile3
impl CanInto<IUnknown> for IWMProfile3
§impl CanInto<IWMProfile> for IWMProfile3
impl CanInto<IWMProfile> for IWMProfile3
§impl CanInto<IWMProfile2> for IWMProfile3
impl CanInto<IWMProfile2> for IWMProfile3
§impl Clone for IWMProfile3
impl Clone for IWMProfile3
§fn clone(&self) -> IWMProfile3
fn clone(&self) -> IWMProfile3
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 IWMProfile3
impl Debug for IWMProfile3
§impl Deref for IWMProfile3
impl Deref for IWMProfile3
§impl From<&IWMProfile3> for &IUnknown
impl From<&IWMProfile3> for &IUnknown
§fn from(value: &IWMProfile3) -> Self
fn from(value: &IWMProfile3) -> 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<&IWMProfile3> for &IWMProfile2
impl From<&IWMProfile3> for &IWMProfile2
§fn from(value: &IWMProfile3) -> Self
fn from(value: &IWMProfile3) -> Self
Converts to this type from the input type.
§impl From<IWMProfile3> for IUnknown
impl From<IWMProfile3> for IUnknown
§fn from(value: IWMProfile3) -> Self
fn from(value: IWMProfile3) -> 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<IWMProfile3> for IWMProfile2
impl From<IWMProfile3> for IWMProfile2
§fn from(value: IWMProfile3) -> Self
fn from(value: IWMProfile3) -> Self
Converts to this type from the input type.
§impl Interface for IWMProfile3
impl Interface for IWMProfile3
§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 IWMProfile3
impl PartialEq for IWMProfile3
impl Eq for IWMProfile3
impl StructuralPartialEq for IWMProfile3
Auto Trait Implementations§
impl Freeze for IWMProfile3
impl RefUnwindSafe for IWMProfile3
impl !Send for IWMProfile3
impl !Sync for IWMProfile3
impl Unpin for IWMProfile3
impl UnwindSafe for IWMProfile3
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