[][src]Struct hdk::ValidationData

pub struct ValidationData {
    pub package: ValidationPackage,
    pub lifecycle: EntryLifecycle,
}

This structs carries information contextual for the process of validating an entry of link and is passed in to the according callbacks.

Fields

package: ValidationPackage

The validation package is data from the entry's/link's source agent that is needed to determine the validity of a given entry. What specific data gets put into the validation package has to be defined throught the validation_package callbacks in the entry! and link! macros.

lifecycle: EntryLifecycle

In which lifecycle of the entry creation are we running this validation callback?

Implementations

impl ValidationData[src]

pub fn sources(&self) -> Vec<HashString>[src]

The list of authors that have signed this entry.

Trait Implementations

impl Clone for ValidationData[src]

impl Debug for ValidationData[src]

impl Default for ValidationData[src]

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

impl Serialize for ValidationData[src]

Auto Trait Implementations

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> Clone for T where
    T: Clone
[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> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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>,