[][src]Struct debug_probe::debug_probe::FakeProbe

pub struct FakeProbe;

Methods

impl FakeProbe[src]

pub fn new() -> FakeProbe[src]

Trait Implementations

impl DAPAccess for FakeProbe[src]

fn read_register(
    &mut self,
    port: Port,
    addr: u16
) -> Result<u32, DebugProbeError>
[src]

Reads the DAP register on the specified port and address

fn write_register(
    &mut self,
    port: Port,
    addr: u16,
    value: u32
) -> Result<(), DebugProbeError>
[src]

Writes a value to the DAP register on the specified port and address

impl DebugProbe for FakeProbe[src]

fn get_name(&self) -> &str[src]

Get human readable name for the probe

fn attach(
    &mut self,
    protocol: Option<WireProtocol>
) -> Result<WireProtocol, DebugProbeError>
[src]

Enters debug mode

fn detach(&mut self) -> Result<(), DebugProbeError>[src]

Leave debug mode

fn target_reset(&mut self) -> Result<(), DebugProbeError>[src]

Resets the target device.

Auto Trait Implementations

Blanket Implementations

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

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

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.

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

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

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