Enum hdk::prelude::ActivityRequest[][src]

pub enum ActivityRequest {
    Status,
    Full,
}

Get either the full activity or just the status of the chain

Variants

Status

Just request the status of the chain

Full

Request all the activity

Trait Implementations

impl Clone for ActivityRequest[src]

impl Copy for ActivityRequest[src]

impl Debug for ActivityRequest[src]

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

impl PartialEq<ActivityRequest> for ActivityRequest[src]

impl Serialize for ActivityRequest[src]

impl StructuralPartialEq for ActivityRequest[src]

impl<'_> TryFrom<&'_ ActivityRequest> for SerializedBytes[src]

type Error = SerializedBytesError

The type returned in the event of a conversion error.

impl TryFrom<ActivityRequest> for SerializedBytes[src]

type Error = SerializedBytesError

The type returned in the event of a conversion error.

impl TryFrom<SerializedBytes> for ActivityRequest[src]

type Error = SerializedBytesError

The type returned in the event of a conversion error.

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<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<V, T> VZip<V> for T where
    V: MultiLane<T>,