[][src]Enum hdk::ValidationPackageDefinition

pub enum ValidationPackageDefinition {
    Entry,
    ChainEntries,
    ChainHeaders,
    ChainFull,
    Custom(String),
}

Variants

Entry

send the header for the entry, along with the entry

ChainEntries

sending all public source chain entries

ChainHeaders

sending all source chain headers

ChainFull

sending the whole chain: public entries and all headers

Custom(String)

sending something custom

Trait Implementations

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

impl PartialEq<ValidationPackageDefinition> for ValidationPackageDefinition[src]

impl StructuralPartialEq for ValidationPackageDefinition[src]

impl TryFrom<JsonString> for ValidationPackageDefinition[src]

type Error = JsonError

The type returned in the event of a conversion error.

impl<'a> TryFrom<&'a JsonString> for ValidationPackageDefinition[src]

type Error = JsonError

The type returned in the event of a conversion error.

impl Serialize for ValidationPackageDefinition[src]

impl<'a> From<&'a ValidationPackageDefinition> for JsonString[src]

impl From<ValidationPackageDefinition> for JsonString[src]

impl Clone for ValidationPackageDefinition[src]

impl Debug for ValidationPackageDefinition[src]

Auto Trait Implementations

Blanket Implementations

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

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

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<T> Borrow<T> for T where
    T: ?Sized
[src]

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

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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