Struct hdk::prelude::cell::CellId[][src]

pub struct CellId(_, _);

The unique identifier for a Cell. Cells are uniquely determined by this pair - this pair is necessary and sufficient to refer to a cell in a conductor

Implementations

impl CellId[src]

pub fn new(dna_hash: HoloHash<Dna>, agent_pubkey: HoloHash<Agent>) -> CellId[src]

Create a CellId from its components

pub fn dna_hash(&self) -> &HoloHash<Dna>[src]

The dna hash/address for this cell.

pub fn agent_pubkey(&self) -> &HoloHash<Agent>[src]

The agent id / public key for this cell.

pub fn into_dna_and_agent(self) -> (HoloHash<Dna>, HoloHash<Agent>)[src]

Trait Implementations

impl Clone for CellId[src]

impl Debug for CellId[src]

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

impl Display for CellId[src]

impl Eq for CellId[src]

impl From<(HoloHash<Dna>, HoloHash<Agent>)> for CellId[src]

impl Hash for CellId[src]

impl PartialEq<CellId> for CellId[src]

impl Serialize for CellId[src]

impl StructuralEq for CellId[src]

impl StructuralPartialEq for CellId[src]

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

type Error = SerializedBytesError

The type returned in the event of a conversion error.

impl TryFrom<CellId> for SerializedBytes[src]

type Error = SerializedBytesError

The type returned in the event of a conversion error.

impl TryFrom<SerializedBytes> for CellId[src]

type Error = SerializedBytesError

The type returned in the event of a conversion error.

Auto Trait Implementations

impl RefUnwindSafe for CellId

impl Send for CellId

impl Sync for CellId

impl Unpin for CellId

impl UnwindSafe for CellId

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