[][src]Struct hdk::prelude::GetEntryResult

pub struct GetEntryResult {
    pub result: GetEntryResultType,
}

Fields

result: GetEntryResultType

Methods

impl GetEntryResult[src]

pub fn new(
    request_kind: StatusRequestKind,
    maybe_entry_with_meta_and_headers: Option<(&EntryWithMeta, Vec<ChainHeader>)>
) -> GetEntryResult
[src]

pub fn found(&self) -> bool[src]

pub fn clear(&mut self)[src]

clears the entry result to be equivalent to not found

pub fn push(
    &mut self,
    entry_with_meta: &EntryWithMeta,
    headers: Vec<ChainHeader>
)
[src]

adds an item to history, or if Single, writes over the current value of the item

pub fn latest(&self) -> Option<Entry>[src]

returns the entry searched for. Note that if the GetEntryOptions did not include a request for the entry value, this function will return None even if the entry was found.

Trait Implementations

impl Clone for GetEntryResult[src]

impl Debug for GetEntryResult[src]

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

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

impl From<GetEntryResult> for JsonString[src]

impl Serialize for GetEntryResult[src]

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

type Error = JsonError

The type returned in the event of a conversion error.

impl TryFrom<JsonString> for GetEntryResult[src]

type Error = JsonError

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

impl<T> DeserializeOwned for T where
    T: 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>,