pub struct SuperH;
Trait Implementations§
Source§impl Arch for SuperH
impl Arch for SuperH
type Address = u32
type Word = u8
type Instruction = SuperHInstruction
type DecodeError = SuperHInstructionDecodeError
type Decoder = SuperHDecoder
type Operand = ()
Source§impl Decoder<SuperH> for SuperHDecoder
impl Decoder<SuperH> for SuperHDecoder
Source§fn decode_into<T: Reader<<SuperH as Arch>::Address, <SuperH as Arch>::Word>>(
&self,
inst: &mut SuperHInstruction,
words: &mut T,
) -> Result<(), <SuperH as Arch>::DecodeError>
fn decode_into<T: Reader<<SuperH as Arch>::Address, <SuperH as Arch>::Word>>( &self, inst: &mut SuperHInstruction, words: &mut T, ) -> Result<(), <SuperH as Arch>::DecodeError>
decode one instruction for this architecture from the
crate::Reader
of this
architecture’s Word
, writing into the provided inst
. Read moreAuto Trait Implementations§
impl Freeze for SuperH
impl RefUnwindSafe for SuperH
impl Send for SuperH
impl Sync for SuperH
impl Unpin for SuperH
impl UnwindSafe for SuperH
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