pub struct MockNetworkData {
    pub authored: HashMap<Arc<AgentPubKey>, Vec<Arc<DhtOpHash>>>,
    pub op_hash_to_kit: HashMap<Arc<DhtOpHash>, Arc<KitsuneOpHash>>,
    pub op_kit_to_hash: HashMap<Arc<KitsuneOpHash>, Arc<DhtOpHash>>,
    pub agent_hash_to_kit: HashMap<Arc<AgentPubKey>, Arc<KitsuneAgent>>,
    pub agent_kit_to_hash: HashMap<Arc<KitsuneAgent>, Arc<AgentPubKey>>,
    pub agent_to_arc: HashMap<Arc<AgentPubKey>, DhtArc>,
    pub agent_to_info: HashMap<Arc<AgentPubKey>, AgentInfoSigned>,
    pub ops_by_loc: BTreeMap<DhtLocation, Vec<Arc<DhtOpHash>>>,
    pub op_to_loc: HashMap<Arc<DhtOpHash>, DhtLocation>,
    pub ops: HashMap<Arc<DhtOpHash>, DhtOpHashed>,
    pub integrity_uuid: String,
    pub coordinator_uuid: String,
}
Expand description

Data to use to simulate a dht network.

Fields

authored: HashMap<Arc<AgentPubKey>, Vec<Arc<DhtOpHash>>>

The hashes authored by each agent.

op_hash_to_kit: HashMap<Arc<DhtOpHash>, Arc<KitsuneOpHash>>

DhtOpHash -> KitsuneOpHash

op_kit_to_hash: HashMap<Arc<KitsuneOpHash>, Arc<DhtOpHash>>

KitsuneOpHash -> DhtOpHash

agent_hash_to_kit: HashMap<Arc<AgentPubKey>, Arc<KitsuneAgent>>

AgentPubKey -> KitsuneAgent

agent_kit_to_hash: HashMap<Arc<KitsuneAgent>, Arc<AgentPubKey>>

KitsuneAgent -> AgentPubKey

agent_to_arc: HashMap<Arc<AgentPubKey>, DhtArc>

Agent storage arcs.

agent_to_info: HashMap<Arc<AgentPubKey>, AgentInfoSigned>

Agents peer info.

ops_by_loc: BTreeMap<DhtLocation, Vec<Arc<DhtOpHash>>>

Hashes ordered by their basis location.

op_to_loc: HashMap<Arc<DhtOpHash>, DhtLocation>

Hash to basis location.

ops: HashMap<Arc<DhtOpHash>, DhtOpHashed>

The DhtOps

integrity_uuid: String

The uuid for the integrity zome (also for the dna).

coordinator_uuid: String

The uuid for the coordinator zome.

Implementations

Number of agents in this simulation. This doesn’t include any real agents.

The simulated agents.

The coverage of the simulated dht.

The agent info of the simulated agents.

Hashes that an agent is an authority for.

Trait Implementations

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

Serialize this value into the given Serde serializer. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

TODO: once 1.33.0 is the minimum supported compiler version, remove Any::type_id_compat and use StdAny::type_id instead. https://github.com/rust-lang/rust/issues/27745 Read more

The archived version of the pointer metadata for this type.

Converts some archived metadata to the pointer metadata for itself.

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Deserializes using the given deserializer

Returns the argument unchanged.

Attaches the provided Context to this type, returning a WithContext wrapper. Read more

Attaches the current Context to this type, returning a WithContext wrapper. Read more

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The alignment of pointer.

The type for initializers.

Initializes a with the given initializer. Read more

Dereferences the given pointer. Read more

Mutably dereferences the given pointer. Read more

Drops the object pointed to by the given pointer. Read more

The type for metadata in pointers and references to Self.

Should always be Self

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more