Struct hdk::prelude::builder::CreateLink[][src]

pub struct CreateLink {
    pub base_address: HoloHash<Entry>,
    pub target_address: HoloHash<Entry>,
    pub zome_id: ZomeId,
    pub tag: LinkTag,
}

Fields

base_address: HoloHash<Entry>target_address: HoloHash<Entry>zome_id: ZomeIdtag: LinkTag

Implementations

impl CreateLink[src]

pub fn new(
    base_address: HoloHash<Entry>,
    target_address: HoloHash<Entry>,
    zome_id: ZomeId,
    tag: LinkTag
) -> CreateLink
[src]

Trait Implementations

impl Clone for CreateLink[src]

impl Debug for CreateLink[src]

impl Eq for CreateLink[src]

impl HeaderBuilder<CreateLink> for CreateLink[src]

impl PartialEq<CreateLink> for CreateLink[src]

impl StructuralEq for CreateLink[src]

impl StructuralPartialEq for CreateLink[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<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>,