pub trait InterfaceMapping {
    // Required method
    fn endpoint(&self) -> &Endpoint<String>;
}
Expand description

Mapping of an interface.

Required Methods§

source

fn endpoint(&self) -> &Endpoint<String>

Returns a reference to the endpoint of an interface.

Implementors§