Trait emulator_hal::FromAddress

source ·
pub trait FromAddress<T> {
    // Required method
    fn from_address(address: T) -> Self;
}
Expand description

Used to translate an address from one address space into another

Required Methods§

source

fn from_address(address: T) -> Self

Translate the given address into an address of type Self

Object Safety§

This trait is not object safe.

Implementors§