Struct hdk::prelude::ZomeId[][src]

pub struct ZomeId(_);

this id is an internal reference, which also serves as a canonical ordering for zome initialization. The value should be auto-generated from the Zome Bundle def

Implementations

impl ZomeId[src]

pub fn index(&self) -> usize[src]

Use as an index into a slice

Trait Implementations

impl Clone for ZomeId[src]

impl Copy for ZomeId[src]

impl Debug for ZomeId[src]

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

impl Display for ZomeId[src]

impl Eq for ZomeId[src]

impl From<ZomeId> for u8[src]

impl From<u8> for ZomeId[src]

impl Hash for ZomeId[src]

impl Ord for ZomeId[src]

impl PartialEq<ZomeId> for ZomeId[src]

impl PartialOrd<ZomeId> for ZomeId[src]

impl Serialize for ZomeId[src]

impl StructuralEq for ZomeId[src]

impl StructuralPartialEq for ZomeId[src]

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

type Error = SerializedBytesError

The type returned in the event of a conversion error.

impl TryFrom<SerializedBytes> for ZomeId[src]

type Error = SerializedBytesError

The type returned in the event of a conversion error.

impl TryFrom<ZomeId> for SerializedBytes[src]

type Error = SerializedBytesError

The type returned in the event of a conversion error.

Auto Trait Implementations

impl RefUnwindSafe for ZomeId

impl Send for ZomeId

impl Sync for ZomeId

impl Unpin for ZomeId

impl UnwindSafe for ZomeId

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

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>,