pub enum Rv32 {}Expand description
The RV32 architecture marker for gdbstub (zero-variant, used at the type level only).
Trait Implementations§
Source§impl Arch for Rv32
impl Arch for Rv32
Source§type Registers = Rv32CoreRegs
type Registers = Rv32CoreRegs
The architecture’s register file. See
Registers for more details.Source§type BreakpointKind = usize
type BreakpointKind = usize
The architecture’s breakpoint “kind”, used to determine the “size”
of breakpoint to set. See
BreakpointKind for more details.Source§fn target_description_xml() -> Option<&'static str>
fn target_description_xml() -> Option<&'static str>
(optional) Return the arch’s description XML file (
target.xml). Read moreSource§fn lldb_register_info(reg_id: usize) -> Option<RegisterInfo<'static>>
fn lldb_register_info(reg_id: usize) -> Option<RegisterInfo<'static>>
(optional) (LLDB extension) Return register info for the specified
register. Read more
Auto Trait Implementations§
impl Freeze for Rv32
impl RefUnwindSafe for Rv32
impl Send for Rv32
impl Sync for Rv32
impl Unpin for Rv32
impl UnsafeUnpin for Rv32
impl UnwindSafe for Rv32
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more