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

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

Enables the user to do range intersection testing.

Required methods

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

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

Loading content...

Implementations on Foreign Types

impl MemoryRange for Range<u32>[src]

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.

Loading content...

Implementors

Loading content...