Trait probe_rs_target::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

fn contains_range(&self, range: &Range<u32>) -> bool[src]

Returns true if self contains range fully.

fn intersects_range(&self, range: &Range<u32>) -> bool[src]

Returns true if self intersects range partially.

Implementations on Foreign Types

impl MemoryRange for Range<u32>[src]

fn contains_range(&self, range: &Range<u32>) -> bool[src]

fn intersects_range(&self, range: &Range<u32>) -> bool[src]

Implementors