[][src]Enum probe_rs_rtt::ScanRegion

pub enum ScanRegion {
    Ram,
    Range(Range<u32>),
    Exact(u32),
}

Used to specify which memory regions to scan for the RTT control block.

Variants

Ram

Scans all RAM regions known to probe-rs. This is the default and should always work, however if your device has a lot of RAM, scanning all of it is slow.

Range(Range<u32>)

Limit scanning to these memory addresses in target memory. It is up to the user to ensure that reading from this range will not read from undefined memory.

Exact(u32)

Tries to find the control block starting at this exact address. It is up to the user to ensure that reading the necessary bytes after the pointer will no read from undefined memory.

Trait Implementations

impl Clone for ScanRegion[src]

impl Debug for ScanRegion[src]

impl Default for ScanRegion[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.