Enum Mips64

Source
pub enum Mips64 {}
Expand description

Implements Arch for 64-bit MIPS.

NOTE: Due to GDB client behavior, this arch does not include a built-in target.xml implementation. Consider manually implementing TargetDescriptionXmlOverride.

See daniel5151/gdbstub#97.

Trait Implementations§

Source§

impl Arch for Mips64

Source§

type Usize = u64

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

type Registers = MipsCoreRegs<u64>

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

type RegId = MipsRegId<u64>

Register identifier enum/struct. Read more
Source§

type BreakpointKind = MipsBreakpointKind

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>

(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 Mips64

§

impl RefUnwindSafe for Mips64

§

impl Send for Mips64

§

impl Sync for Mips64

§

impl Unpin for Mips64

§

impl UnwindSafe for Mips64

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 = Infallible

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

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

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.