Struct hdk::prelude::EntryDetails[][src]

pub struct EntryDetails {
    pub entry: Entry,
    pub headers: Vec<SignedHeaderHashed, Global>,
    pub rejected_headers: Vec<SignedHeaderHashed, Global>,
    pub deletes: Vec<SignedHeaderHashed, Global>,
    pub updates: Vec<SignedHeaderHashed, Global>,
    pub entry_dht_status: EntryDhtStatus,
}
Expand description

An Entry with all it’s metadata.

Fields

entry: Entry

The data

headers: Vec<SignedHeaderHashed, Global>

Create relationships.

These are the headers that created this entry. They can be either a [Create] or an [Update] header where the entry_hash field is the hash of the above entry.

You can make an Element from any of these and the entry.

rejected_headers: Vec<SignedHeaderHashed, Global>

Rejected create relationships. These are also the headers that created this entry. but did not pass validation.

deletes: Vec<SignedHeaderHashed, Global>

Delete relationships

These are the deletes that have the deletes_entry_address set to the above Entry.

updates: Vec<SignedHeaderHashed, Global>

Update relationships.

These are the updates that have the original_entry_address set to the above Entry.

Notes

This is just the relationship and you will need call get if you want to get the new Entry (the entry on the entry_hash field).

You cannot make an Element from these headers and the above entry.

entry_dht_status: EntryDhtStatus

The status of this entry currently according to your view of the metadata

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

Performs the conversion.

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

Performs the conversion.

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)

recently added

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.