[][src]Struct probe_rs::architecture::riscv::communication_interface::RiscvCommunicationInterface

pub struct RiscvCommunicationInterface { /* fields omitted */ }

Implementations

impl<'probe> RiscvCommunicationInterface[src]

pub fn new(probe: Box<dyn JTAGAccess>) -> Result<Self, DebugProbeError>[src]

pub fn close(self) -> Probe[src]

Trait Implementations

impl<'a> AsMut<dyn DebugProbe + 'a> for RiscvCommunicationInterface[src]

impl<'a> AsRef<dyn DebugProbe + 'a> for RiscvCommunicationInterface[src]

impl Debug for RiscvCommunicationInterface[src]

impl MemoryInterface for RiscvCommunicationInterface[src]

pub fn read_8(&mut self, address: u32, data: &mut [u8]) -> Result<(), Error>[src]

Read 8-bit values from target memory.

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, 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.