pub type RecordEntryRef<'a> = RecordEntry<&'a Entry>;
Expand description

Alias for record with ref entry

Aliased Type§

enum RecordEntryRef<'a> {
    Present(&'a Entry),
    Hidden,
    NA,
    NotStored,
}

Variants§

§

Present(&'a Entry)

The Action has an entry_address reference, and the Entry is accessible.

§

Hidden

The Action has an entry_address reference, but we are in a public context and the entry is private.

§

NA

The Action does not contain an entry_address reference, so there will never be an associated Entry.

§

NotStored

The Action has an entry but was stored without it. This can happen when you receive gossip of just an action when the action type is a crate::EntryCreationAction, in particular for certain DhtOps