pub struct State {
    pub address_map: Cid,
    pub next_id: ActorID,
    pub network_name: String,
}
Expand description

State is reponsible for creating

Fields

address_map: Cidnext_id: ActorIDnetwork_name: String

Implementations

Allocates a new ID address and stores a mapping of the argument address to it. Returns the newly-allocated address.

ResolveAddress resolves an address to an ID-address, if possible. If the provided address is an ID address, it is returned as-is. This means that mapped ID-addresses (which should only appear as values, not keys) and singleton actor addresses (which are not in the map) pass through unchanged.

Returns an ID-address and true if the address was already an ID-address or was resolved in the mapping. Returns an undefined address and false if the address was not an ID-address and not found in the mapping. Returns an error only if state was inconsistent.

Trait Implementations

Marshalls cbor encodable object into cbor bytes

Unmarshals cbor encoded bytes to object

Returns the content identifier of the raw block of data Default is Blake2b256 hash Read more

Deserialize this value from the given Serde deserializer. Read more

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

Scrape the references from an impl Read. Read more

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.