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

pub struct AccessRegisterCommand(pub u32);

Abstract command register, located at address 0x17 This is not for all commands, only for the ones from the debug spec.

Implementations

impl AccessRegisterCommand[src]

pub fn set_cmd_type(&mut self, value: u32)[src]

pub fn set_aarsize(&mut self, value: RiscvBusAccess)[src]

pub fn set_aarpostincrement(&mut self, value: bool)[src]

pub fn set_postexec(&mut self, value: bool)[src]

pub fn set_transfer(&mut self, value: bool)[src]

pub fn set_write(&mut self, value: bool)[src]

pub fn set_regno(&mut self, value: u32)[src]

Trait Implementations

impl<T> BitRange<T> for AccessRegisterCommand where
    u32: BitRange<T>, 
[src]

impl Debug for AccessRegisterCommand[src]

impl From<AccessRegisterCommand> for u32[src]

impl From<u32> for AccessRegisterCommand[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> Bit for T where
    T: BitRange<u8>, 
[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.