pub trait Addressable: Authenticable {
    // Required method
    fn as_agent_id(&self) -> &AgentId;
}
Expand description

Something that can be addressed as agent.

Required Methods§

source

fn as_agent_id(&self) -> &AgentId

Returns the AgentId reference of the addressable object.

Implementors§