Trait IVdsServiceUninstallDisk_Impl
pub trait IVdsServiceUninstallDisk_Impl: IUnknownImpl {
// Required methods
fn GetDiskIdFromLunInfo(
&self,
pluninfo: *const VDS_LUN_INFORMATION,
) -> Result<GUID>;
fn UninstallDisks(
&self,
pdiskidarray: *const GUID,
ulcount: u32,
bforce: bool,
pbreboot: *mut u8,
presults: *mut HRESULT,
) -> Result<()>;
}
Required Methods§
fn GetDiskIdFromLunInfo( &self, pluninfo: *const VDS_LUN_INFORMATION, ) -> Result<GUID>
fn UninstallDisks( &self, pdiskidarray: *const GUID, ulcount: u32, bforce: bool, pbreboot: *mut u8, presults: *mut HRESULT, ) -> 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.