Trait LockedRange

Source
pub trait LockedRange {
    // Required method
    fn push_sub_range(&mut self, sub_range: &[AtomicU8]);
}
Expand description

Represents a range of locked guest pages as an ordered list of the VA sub-ranges to which the guest pages are mapped. The range may only partially span the first and last page and must fully span all intermediate pages.

Required Methods§

Source

fn push_sub_range(&mut self, sub_range: &[AtomicU8])

Adds a sub-range to this range.

Implementors§