pub trait AccessPeerStore {
    // Required methods
    fn get_agent_arq(&self, agent: &AgentKey) -> Arq;
    fn get_arq_set(&self) -> ArqSet;
}
Expand description

All methods involved in accessing the peer store, to be implemented by the host.

Required Methods§

source

fn get_agent_arq(&self, agent: &AgentKey) -> Arq

Get the arq for an agent

source

fn get_arq_set(&self) -> ArqSet

Get the set of all arqs for this node

Implementors§