pub trait AccessPort {
    fn ap_address(&self) -> ApAddress;
}
Expand description

A trait to be implemented on access port types.

Use the define_ap! macro to implement this.

Required Methods§

Returns the address of the access port.

Implementors§