Struct routing::StructuredData [] [src]

pub struct StructuredData {
    // some fields omitted
}

Mutable structured data.

These types may be stored unsigned with previous and current owner keys set to the same keys. Updates require a signature to validate.

Methods

impl StructuredData
[src]

Creates a new StructuredData signed with signing_key.

Replaces this data item with the given updated version if the update is valid, otherwise returns an error.

This allows types to be created and previous_owner_signatures added one by one. To transfer ownership, the current owner signs over the data; the previous owners field must have the previous owners of version - 1 as the current owners of that last version.

Returns the name.

Returns DataIdentifier for this data element.

Verifies that other is a valid update for self; returns an error otherwise.

An update is valid if it doesn't change type tag or identifier (these are immutable), increases the version by 1 and is signed by (more than 50% of) the owners.

In case of an ownership transfer, the previous_owner_keys in other must match the current_owner_keys in self.

Adds a signature with the given secret_key to the previous_owner_signatures and returns the number of signatures that are still required. If more than 50% of the previous owners have signed, 0 is returned and validation is complete.

Overwrite any existing signatures with the new signatures provided.

Get the type_tag

Get the serialised data

Get the previous owner keys

Get the version

Get the current owner keys

Get previous owner signatures

Trait Implementations

impl Hash for StructuredData
[src]

Feeds this value into the state given, updating the hasher as necessary.

Feeds a slice of this type into the state provided.

impl Eq for StructuredData
[src]

impl PartialEq for StructuredData
[src]

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

This method tests for !=.

impl PartialOrd for StructuredData
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Ord for StructuredData
[src]

This method returns an Ordering between self and other. Read more

impl Clone for StructuredData
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Decodable for StructuredData
[src]

impl Encodable for StructuredData
[src]

impl Debug for StructuredData
[src]

Formats the value using the given formatter.