Trait IMFAudioPolicy_Impl
pub trait IMFAudioPolicy_Impl: IUnknownImpl {
// Required methods
fn SetGroupingParam(&self, rguidclass: *const GUID) -> Result<()>;
fn GetGroupingParam(&self) -> Result<GUID>;
fn SetDisplayName(&self, pszname: &PCWSTR) -> Result<()>;
fn GetDisplayName(&self) -> Result<PWSTR>;
fn SetIconPath(&self, pszpath: &PCWSTR) -> Result<()>;
fn GetIconPath(&self) -> Result<PWSTR>;
}
Required Methods§
fn SetGroupingParam(&self, rguidclass: *const GUID) -> Result<()>
fn GetGroupingParam(&self) -> Result<GUID>
fn SetDisplayName(&self, pszname: &PCWSTR) -> Result<()>
fn GetDisplayName(&self) -> Result<PWSTR>
fn SetIconPath(&self, pszpath: &PCWSTR) -> Result<()>
fn GetIconPath(&self) -> Result<PWSTR>
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.