Skip to main content

hypercall_recovery/
replay.rs

1/// How a replay component handled a command.
2#[derive(Debug, Clone, Copy, PartialEq, Eq)]
3pub enum ReplayDisposition {
4    Applied,
5    Ignored,
6    NotOwned,
7}