Skip to main content

Rv32

Enum Rv32 

Source
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

Source§

type Usize = u32

The architecture’s pointer size (e.g: u32 on a 32-bit system).
Source§

type Registers = Rv32CoreRegs

The architecture’s register file. See Registers for more details.
Source§

type BreakpointKind = usize

The architecture’s breakpoint “kind”, used to determine the “size” of breakpoint to set. See BreakpointKind for more details.
Source§

type RegId = Rv32RegId

Register identifier enum/struct. Read more
Source§

fn target_description_xml() -> Option<&'static str>

(optional) Return the arch’s description XML file (target.xml). Read more
Source§

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> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.