pub trait AccessPort: Clone {
    // Required method
    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§

source

fn ap_address(&self) -> ApAddress

Returns the address of the access port.

Object Safety§

This trait is not object safe.

Implementors§