xen/arch/
mod.rs

1
2
3
4
5
6
mod domain;
pub mod x86;

pub trait Architecture {
    type Registers: Default;
}