pub trait InstallIntercept {
// Required method
fn install_intercept(
&mut self,
partition_id: u64,
access_type_mask: u32,
intercept_type: HvInterceptType,
intercept_parameters: HvInterceptParameters,
) -> HvResult<()>;
}
Expand description
Implements the HvInstallIntercept
hypercall.
Required Methods§
Sourcefn install_intercept(
&mut self,
partition_id: u64,
access_type_mask: u32,
intercept_type: HvInterceptType,
intercept_parameters: HvInterceptParameters,
) -> HvResult<()>
fn install_intercept( &mut self, partition_id: u64, access_type_mask: u32, intercept_type: HvInterceptType, intercept_parameters: HvInterceptParameters, ) -> HvResult<()>
Post a synic message.