Struct near_primitives::receipt::ReceivedData[][src]

pub struct ReceivedData {
    pub data: Option<Vec<u8>>,
}

A temporary data which is created by processing of DataReceipt stored in a state trie with a key = account_id + data_id until input_data_ids of all incoming Receipts are satisfied None means data retrieval was failed

Fields

data: Option<Vec<u8>>

Trait Implementations

impl BorshDeserialize for ReceivedData where
    Option<Vec<u8>>: BorshDeserialize
[src]

impl BorshSerialize for ReceivedData where
    Option<Vec<u8>>: BorshSerialize
[src]

impl Clone for ReceivedData[src]

impl Debug for ReceivedData[src]

impl Eq for ReceivedData[src]

impl Hash for ReceivedData[src]

impl PartialEq<ReceivedData> for ReceivedData[src]

impl Serialize for ReceivedData[src]

impl StructuralEq for ReceivedData[src]

impl StructuralPartialEq for ReceivedData[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> CallHasher for T where
    T: Hash

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[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>,