Trait probe_rs::config::MemoryRange[][src]

pub trait MemoryRange {
    fn contains_range(&self, range: &Range<u32>) -> bool;
fn intersects_range(&self, range: &Range<u32>) -> 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