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

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

Enables the user to do range intersection testing.

Required methods

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

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

Loading content...

Implementations on Foreign Types

impl MemoryRange for Range<u32>[src]

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

Returns true if self contains range fully.

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

Returns true if self intersects range partially.

Loading content...

Implementors

Loading content...