pub struct AnagolayVersionData<T: ArtifactType> {
    pub entity_id: Option<GenericId>,
    pub parent_id: Option<VersionId>,
    pub artifacts: Vec<AnagolayArtifactStructure<T>>,
}
Expand description

Version data. It contains all the needed parameters which define the entity Version and is hashed to produce the Version id

Examples

use codec::{Decode, Encode};
use anagolay_support::{AnagolayStructure, AnagolayVersionData, AnagolayVersionExtra, ArtifactType};

#[derive(Encode, Decode, Clone, PartialEq, Eq)]
enum OperationArtifactType {
  Wasm, Docs, Git
}
impl ArtifactType for OperationArtifactType {}

type OperationVersionData = AnagolayVersionData<OperationArtifactType>;
type OperationVersion = AnagolayStructure<OperationVersionData, AnagolayVersionExtra>;

Fields

entity_id: Option<GenericId>

The id of the Operation, Workflow or other entity to which this Version is associated. This field is read-only

parent_id: Option<VersionId>

The id of the previous Operation Version for the same operation, if any.

artifacts: Vec<AnagolayArtifactStructure<T>>

Collection of packages that the publisher produced

Trait Implementations

Implementation of AnagolayStructureData trait for AnagolayVersionData

Validate the following constraints:

  • entity_id: If present, must be a valid CID
  • parent_id: If present, must be a valid CID
  • artifacts: For each artifact, the file_extension must not be empty and the ipfs_cid must be a valid CID
Return

An unit result if the validation is successful, a Character error with a description in case it fails

Computes cid of the data, after encoding it using parity SCALE codec Read more

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Attempt to deserialise the value from input.

Attempt to skip the encoded value from input. Read more

Returns the fixed encoded size of the type. Read more

Implementation of Default trait for AnagolayVersionData

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

Convert self to a slice and append it to the destination.

If possible give a hint of expected size of the encoding. Read more

Convert self to an owned vector.

Convert self to a slice and then invoke the given closure with it.

Calculates the encoded size. Read more

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

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Convert from a value of T into an equivalent instance of Option<Self>. Read more

Consume self to return Some equivalent value of Option<T>. Read more

True iff no bits are set.

Return the value of Self that is clear.

Decode Self and consume all of the given input data. Read more

Decode Self and consume all of the given input data. Read more

Decode Self with the given maximum recursion depth. Read more

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.

Cast reference.

Cast reference.

Cast mutable reference.

Cast mutable reference.

Get a reference to the inner from the outer.

Get a mutable reference to the inner from the outer.

Return an encoding of Self prepended by given slice.

Should always be Self

Convert from a value of T into an equivalent instance of Self. Read more

Consume self to return an equivalent value of T. Read more

The resulting type after obtaining ownership.

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

🔬 This is a nightly-only experimental API. (toowned_clone_into)

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.

The counterpart to unchecked_from.

Consume self to return an equivalent value of T.