Trait IWMBandwidthSharing_Impl
pub trait IWMBandwidthSharing_Impl: IWMStreamList_Impl {
// Required methods
fn GetType(&self) -> Result<GUID>;
fn SetType(&self, guidtype: *const GUID) -> Result<()>;
fn GetBandwidth(
&self,
pdwbitrate: *mut u32,
pmsbufferwindow: *mut u32,
) -> Result<()>;
fn SetBandwidth(&self, dwbitrate: u32, msbufferwindow: u32) -> Result<()>;
}
Required Methods§
fn GetType(&self) -> Result<GUID>
fn SetType(&self, guidtype: *const GUID) -> Result<()>
fn GetBandwidth( &self, pdwbitrate: *mut u32, pmsbufferwindow: *mut u32, ) -> Result<()>
fn SetBandwidth(&self, dwbitrate: u32, msbufferwindow: u32) -> Result<()>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.