[][src]Struct holochain_core_types::dna::entry_types::LinksTo

pub struct LinksTo {
    pub target_type: String,
    pub link_type: String,
}

An individual object in a "links_to" array.

Fields

target_type: String

The target_type of this links_to entry

link_type: String

The type of this links_to entry

Implementations

impl LinksTo[src]

pub fn new() -> Self[src]

Allow sane defaults for LinksTo::new().

Trait Implementations

impl Clone for LinksTo[src]

impl Debug for LinksTo[src]

impl Default for LinksTo[src]

fn default() -> Self[src]

Provide defaults for a "links_to" object.

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

impl Hash for LinksTo[src]

impl PartialEq<LinksTo> for LinksTo[src]

impl Serialize for LinksTo[src]

impl StructuralPartialEq for LinksTo[src]

Auto Trait Implementations

impl RefUnwindSafe for LinksTo

impl Send for LinksTo

impl Sync for LinksTo

impl Unpin for LinksTo

impl UnwindSafe for LinksTo

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: for<'de> 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>,