Struct emulator_hal::AutoBusAdapter

source ·
pub struct AutoBusAdapter<AddressIn, AddressOut, Bus, ErrorOut>
where AddressOut: FromAddress<AddressIn> + Copy, Bus: BusAccess<AddressOut>, ErrorOut: From<Bus::Error>,
{ pub inner: Bus, /* private fields */ }
Expand description

An adapter that uses the FromAddress trait to translate an address before accessing a wrapped bus object

This object implements the BusAccess trait, and takes address of type AddressIn, applies FromAddress<AddressIn> trait to produce an address of type AddressOut, and then calls the equivalent trait method with that produced address, return the result

Fields§

§inner: Bus

The underlying object implementing BusAccess that this object adapts

Implementations§

source§

impl<AddressIn, AddressOut, Bus, ErrorOut> AutoBusAdapter<AddressIn, AddressOut, Bus, ErrorOut>
where AddressOut: FromAddress<AddressIn> + Copy, Bus: BusAccess<AddressOut>, ErrorOut: From<Bus::Error>,

source

pub fn new(inner: Bus) -> Self

Construct a new instance of an adapter for the given bus object

Trait Implementations§

source§

impl<AddressIn, AddressOut, Bus, ErrorOut> BusAccess<AddressIn> for AutoBusAdapter<AddressIn, AddressOut, Bus, ErrorOut>
where AddressIn: Copy, AddressOut: FromAddress<AddressIn> + Copy, Bus: BusAccess<AddressOut>, ErrorOut: ErrorType + From<Bus::Error>,

§

type Instant = <Bus as BusAccess<AddressOut>>::Instant

The type of an instant in simulated time that the bus access is meant to occur at
§

type Error = ErrorOut

The type of an error returned by this bus
source§

fn read( &mut self, now: Self::Instant, addr: AddressIn, data: &mut [u8] ) -> Result<usize, Self::Error>

Read an arbitrary length of bytes from this device, at time now Read more
source§

fn write( &mut self, now: Self::Instant, addr: AddressIn, data: &[u8] ) -> Result<usize, Self::Error>

Write an arbitrary length of bytes into this device, at time now Read more
source§

fn read_u8( &mut self, now: Self::Instant, addr: Address ) -> Result<u8, Self::Error>

Read a single u8 value at the given address
source§

fn read_beu16( &mut self, now: Self::Instant, addr: Address ) -> Result<u16, Self::Error>

Read a single u16 value in big endian byte order at the given address
source§

fn read_leu16( &mut self, now: Self::Instant, addr: Address ) -> Result<u16, Self::Error>

Read a single u16 value in little endian byte order at the given address
source§

fn read_u16( &mut self, order: ByteOrder, now: Self::Instant, addr: Address ) -> Result<u16, Self::Error>

Read a single u16 value in the given byte order at the given address
source§

fn read_beu32( &mut self, now: Self::Instant, addr: Address ) -> Result<u32, Self::Error>

Read a single u32 value in big endian byte order at the given address
source§

fn read_leu32( &mut self, now: Self::Instant, addr: Address ) -> Result<u32, Self::Error>

Read a single u32 value in little endian byte order at the given address
source§

fn read_u32( &mut self, order: ByteOrder, now: Self::Instant, addr: Address ) -> Result<u32, Self::Error>

Read a single u32 value in the given byte order at the given address
source§

fn read_beu64( &mut self, now: Self::Instant, addr: Address ) -> Result<u64, Self::Error>

Read a single u64 value in big endian byte order at the given address
source§

fn read_leu64( &mut self, now: Self::Instant, addr: Address ) -> Result<u64, Self::Error>

Read a single u64 value in little endian byte order at the given address
source§

fn read_u64( &mut self, order: ByteOrder, now: Self::Instant, addr: Address ) -> Result<u64, Self::Error>

Read a single u64 value in the given byte order at the given address
source§

fn write_u8( &mut self, now: Self::Instant, addr: Address, value: u8 ) -> Result<(), Self::Error>

Write a single u8 value to the given address
source§

fn write_beu16( &mut self, now: Self::Instant, addr: Address, value: u16 ) -> Result<(), Self::Error>

Write the given u16 value in big endian byte order to the given address
source§

fn write_leu16( &mut self, now: Self::Instant, addr: Address, value: u16 ) -> Result<(), Self::Error>

Write the given u16 value in little endian byte order to the given address
source§

fn write_u16( &mut self, order: ByteOrder, now: Self::Instant, addr: Address, value: u16 ) -> Result<(), Self::Error>

Write the given u16 value in the given byte order to the given address
source§

fn write_beu32( &mut self, now: Self::Instant, addr: Address, value: u32 ) -> Result<(), Self::Error>

Write the given u32 value in big endian byte order to the given address
source§

fn write_leu32( &mut self, now: Self::Instant, addr: Address, value: u32 ) -> Result<(), Self::Error>

Write the given u32 value in little endian byte order to the given address
source§

fn write_u32( &mut self, order: ByteOrder, now: Self::Instant, addr: Address, value: u32 ) -> Result<(), Self::Error>

Write the given u32 value in the given byte order to the given address
source§

fn write_beu64( &mut self, now: Self::Instant, addr: Address, value: u64 ) -> Result<(), Self::Error>

Write the given u64 value in big endian byte order to the given address
source§

fn write_leu64( &mut self, now: Self::Instant, addr: Address, value: u64 ) -> Result<(), Self::Error>

Write the given u64 value in little endian byte order to the given address
source§

fn write_u64( &mut self, order: ByteOrder, now: Self::Instant, addr: Address, value: u64 ) -> Result<(), Self::Error>

Write the given u64 value in the given byte order to the given address

Auto Trait Implementations§

§

impl<AddressIn, AddressOut, Bus, ErrorOut> Freeze for AutoBusAdapter<AddressIn, AddressOut, Bus, ErrorOut>
where Bus: Freeze,

§

impl<AddressIn, AddressOut, Bus, ErrorOut> RefUnwindSafe for AutoBusAdapter<AddressIn, AddressOut, Bus, ErrorOut>
where Bus: RefUnwindSafe, AddressIn: RefUnwindSafe, AddressOut: RefUnwindSafe, ErrorOut: RefUnwindSafe,

§

impl<AddressIn, AddressOut, Bus, ErrorOut> Send for AutoBusAdapter<AddressIn, AddressOut, Bus, ErrorOut>
where Bus: Send, AddressIn: Send, AddressOut: Send, ErrorOut: Send,

§

impl<AddressIn, AddressOut, Bus, ErrorOut> Sync for AutoBusAdapter<AddressIn, AddressOut, Bus, ErrorOut>
where Bus: Sync, AddressIn: Sync, AddressOut: Sync, ErrorOut: Sync,

§

impl<AddressIn, AddressOut, Bus, ErrorOut> Unpin for AutoBusAdapter<AddressIn, AddressOut, Bus, ErrorOut>
where Bus: Unpin, AddressIn: Unpin, AddressOut: Unpin, ErrorOut: Unpin,

§

impl<AddressIn, AddressOut, Bus, ErrorOut> UnwindSafe for AutoBusAdapter<AddressIn, AddressOut, Bus, ErrorOut>
where Bus: UnwindSafe, AddressIn: UnwindSafe, AddressOut: UnwindSafe, ErrorOut: UnwindSafe,

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, S> IntoAddress<T> for S
where T: FromAddress<S>,

source§

fn into_address(self) -> T

Translate the given address into an address of type T
source§

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

§

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>,

§

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.