pub trait MemoryRange {
    fn contains_range(&self, range: &Range<u64>) -> bool;
    fn intersects_range(&self, range: &Range<u64>) -> bool;
}
Expand description

Enables the user to do range intersection testing.

Required Methods§

Returns true if self contains range fully.

Returns true if self intersects range partially.

Implementations on Foreign Types§

Implementors§