[][src]Struct rvemu::devices::clint::Clint

pub struct Clint { /* fields omitted */ }

The core-local interruptor (CLINT).

Methods

impl Clint[src]

pub fn new() -> Self[src]

Create a new CLINT object.

pub fn read8(&self, addr: usize) -> u8[src]

Read a byte from the CLINT.

pub fn write8(&mut self, addr: usize, val: u8)[src]

Write a byte to the CLINT.

pub fn read64(&self, addr: usize) -> u64[src]

Read 8 bytes from the CLINT.

pub fn write64(&mut self, addr: usize, val: u64)[src]

Write 8 bytes to the CLINT.

Auto Trait Implementations

impl RefUnwindSafe for Clint

impl Send for Clint

impl Sync for Clint

impl Unpin for Clint

impl UnwindSafe for Clint

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.