Trait HasDaddr

Source
pub trait HasDaddr {
    // Required method
    fn daddr(&self) -> Daddr;
}
Expand description

A trait for types that have mapped address in the device address space.

Required Methods§

Source

fn daddr(&self) -> Daddr

Gets the base address of the mapping in the device address space.

Implementations on Foreign Types§

Source§

impl<T: HasDaddr> HasDaddr for &T

Source§

fn daddr(&self) -> Daddr

Implementors§