Trait IViewHelper_Impl
pub trait IViewHelper_Impl: IUnknownImpl {
// Required methods
fn GetConnectedIDs(
&self,
wszadaptorname: &PCWSTR,
pulcount: *mut u32,
pulid: *mut u32,
ulflags: u32,
) -> Result<()>;
fn GetActiveTopology(
&self,
wszadaptorname: &PCWSTR,
ulsourceid: u32,
pulcount: *mut u32,
pultargetid: *mut u32,
) -> Result<()>;
fn SetActiveTopology(
&self,
wszadaptorname: &PCWSTR,
ulsourceid: u32,
ulcount: u32,
pultargetid: *const u32,
) -> Result<()>;
fn Commit(&self) -> Result<()>;
fn SetConfiguration(&self, pistream: Ref<'_, IStream>) -> Result<u32>;
fn GetProceedOnNewConfiguration(&self) -> Result<()>;
}
Required Methods§
fn GetConnectedIDs( &self, wszadaptorname: &PCWSTR, pulcount: *mut u32, pulid: *mut u32, ulflags: u32, ) -> Result<()>
fn GetActiveTopology( &self, wszadaptorname: &PCWSTR, ulsourceid: u32, pulcount: *mut u32, pultargetid: *mut u32, ) -> Result<()>
fn SetActiveTopology( &self, wszadaptorname: &PCWSTR, ulsourceid: u32, ulcount: u32, pultargetid: *const u32, ) -> Result<()>
fn Commit(&self) -> Result<()>
fn SetConfiguration(&self, pistream: Ref<'_, IStream>) -> Result<u32>
fn GetProceedOnNewConfiguration(&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.