Trait IMFContentEnabler_Impl
pub trait IMFContentEnabler_Impl: IUnknownImpl {
// Required methods
fn GetEnableType(&self) -> Result<GUID>;
fn GetEnableURL(
&self,
ppwszurl: *mut PWSTR,
pcchurl: *mut u32,
ptruststatus: *mut MF_URL_TRUST_STATUS,
) -> Result<()>;
fn GetEnableData(
&self,
ppbdata: *mut *mut u8,
pcbdata: *mut u32,
) -> Result<()>;
fn IsAutomaticSupported(&self) -> Result<BOOL>;
fn AutomaticEnable(&self) -> Result<()>;
fn MonitorEnable(&self) -> Result<()>;
fn Cancel(&self) -> Result<()>;
}
Required Methods§
fn GetEnableType(&self) -> Result<GUID>
fn GetEnableURL( &self, ppwszurl: *mut PWSTR, pcchurl: *mut u32, ptruststatus: *mut MF_URL_TRUST_STATUS, ) -> Result<()>
fn GetEnableData(&self, ppbdata: *mut *mut u8, pcbdata: *mut u32) -> Result<()>
fn IsAutomaticSupported(&self) -> Result<BOOL>
fn AutomaticEnable(&self) -> Result<()>
fn MonitorEnable(&self) -> Result<()>
fn Cancel(&self) -> 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.