pub struct TypedPath {
    pub link_type: ScopedLinkType,
    pub path: Path,
}
Expand description

A LinkType applied to a Path.

All links committed from this path will have this link type.

Get a typed path from a path and a link type:

let typed_path = path.typed(LinkTypes::MyLink)?;

Fields

link_type: ScopedLinkType

The LinkType within the scope of the zome where it’s defined.

path: Path

The Path that is using this LinkType.

Implementations

Create a new TypedPath by attaching a ZomeId and LinkType to a Path.

Does an entry exist at the hash we expect?

Recursively touch this and every parent that doesn’t exist yet.

The parent of the current path is simply the path truncated one level.

Touch and list all the links from this path to paths below it. Only returns links between paths, not to other entries that might have their own links.

Touch and list all the links from this path to paths below it. Same as Path::children but returns Vec<Path> rather than Vec<Link>. This is more than just a convenience. In general it’s not possible to construct a full Path from a child Link alone as only a single Component is encoded into the link tag. To build a full child path the parent path + child link must be combined, which this function does to produce each child, by using &self as that parent.

Methods from Deref<Target = Path>

source

pub fn path_entry_hash(&self) -> ExternResult<EntryHash>

What is the hash for the current Path ?

Accessor for the last Component of this Path. This can be thought of as the leaf of the implied tree structure of which this Path is one branch of.

Make the LinkTag for this Path.

Check if this Path is the root.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

The resulting type after dereferencing.

Dereferences the value.

Deserialize this value from the given Serde deserializer. Read more

Converts to this type from the input type.

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Serialize this value into the given Serde serializer. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

The archived version of the pointer metadata for this type.

Converts some archived metadata to the pointer metadata for itself.

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Deserializes using the given deserializer

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type for metadata in pointers and references to Self.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more