Trait emulator_hal::IntoAddress

source ·
pub trait IntoAddress<T> {
    // Required method
    fn into_address(self) -> T;
}
Expand description

Used to translate an address from one address space into another

Required Methods§

source

fn into_address(self) -> T

Translate the given address into an address of type T

Implementors§

source§

impl<T, S> IntoAddress<T> for S
where T: FromAddress<S>,