Struct forest_actor::init::State[][src]

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

State is reponsible for creating

Fields

address_map: Cidnext_id: ActorIDnetwork_name: String

Implementations

impl State[src]

pub fn new<BS: BlockStore>(
    store: &BS,
    network_name: String
) -> Result<Self, Box<dyn StdError>>
[src]

pub fn map_address_to_new_id<BS: BlockStore>(
    &mut self,
    store: &BS,
    addr: &Address
) -> Result<Address, HamtError>
[src]

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

pub fn resolve_address<BS: BlockStore>(
    &self,
    store: &BS,
    addr: &Address
) -> Result<Option<Address>, Box<dyn StdError>>
[src]

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

impl Cbor for State[src]

impl<'de> Deserialize<'de> for State[src]

impl Serialize for State[src]

Auto Trait Implementations

impl RefUnwindSafe for State

impl Send for State

impl Sync for State

impl Unpin for State

impl UnwindSafe for State

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,