pub enum ElementEntry {
    Present(Entry),
    Hidden,
    NotApplicable,
    NotStored,
}
Expand description

Represents the different ways the entry_address reference within a Header can be intepreted

Variants

Present(Entry)

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

Hidden

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

NotApplicable

The Header does not contain an entry_address reference.

NotStored

The Header has an entry but was stored without it. This can happen when you receive gossip of just a header when the header type is a [NewEntryHeader]

Implementations

Provides entry data by reference if it exists

Collapses the enum down to the two possibilities of extant or nonextant Entry data

Provides entry data as owned value if it exists.

Collapses the enum down to the two possibilities of extant or nonextant Entry data

Provides deserialized app entry if it exists

same as as_option but handles deserialization anything other than ElementEntry::Present returns None a present entry that fails to deserialize cleanly is an error a present entry that deserializes cleanly is returned as the provided type A

Provides CapGrantEntry if it exists

same as as_option but handles cap grants anything other than ElementEntry::Present for a Entry::CapGrant returns None

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

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

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Compare self to key and return true if they are equal.

Returns the argument unchanged.

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 resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. 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.

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