Struct hdk::prelude::AppEntryType[][src]

pub struct AppEntryType { /* fields omitted */ }

Information about a class of Entries provided by the DNA

Implementations

impl AppEntryType[src]

pub fn new(
    id: EntryDefIndex,
    zome_id: ZomeId,
    visibility: EntryVisibility
) -> AppEntryType
[src]

pub fn id(&self) -> EntryDefIndex[src]

pub fn zome_id(&self) -> ZomeId[src]

pub fn visibility(&self) -> &EntryVisibility[src]

Trait Implementations

impl Clone for AppEntryType[src]

impl Debug for AppEntryType[src]

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

impl Eq for AppEntryType[src]

impl Hash for AppEntryType[src]

impl PartialEq<AppEntryType> for AppEntryType[src]

impl Serialize for AppEntryType[src]

impl StructuralEq for AppEntryType[src]

impl StructuralPartialEq for AppEntryType[src]

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

type Error = SerializedBytesError

The type returned in the event of a conversion error.

impl TryFrom<AppEntryType> for SerializedBytes[src]

type Error = SerializedBytesError

The type returned in the event of a conversion error.

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