pub struct Policy<Attributes> {
    pub identity_provider: u32,
    pub created_at: Timestamp,
    pub valid_to: Timestamp,
    pub items: Attributes,
}
Expand description

Policy on the credential of the account.

This is one of the key features of the Concordium blockchain. Each account on the chain is backed by an identity. The policy is verified and signed by the identity provider before an account can be created on the chain.

The type is parameterized by the choice of Attributes. These are either borrowed or owned, in the form of an iterator over key-value pairs or a vector of such. This flexibility is needed so that attributes can be accessed efficiently, as well as constructed conveniently for testing.

Fields

identity_provider: u32

Identity of the identity provider who signed the identity object that this policy is derived from.

created_at: Timestamp

Timestamp at the beginning of the month when the identity object backing this policy was created. This timestamp has very coarse granularity in order for the identity provider to not be able to link identities they have created with accounts that users created on the chain. as a timestamp (which has millisecond granularity) in order to make it easier to compare with, e.g., slot_time.

valid_to: Timestamp

Beginning of the month where the identity is no longer valid.

items: Attributes

List of attributes, in ascending order of the tag.

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

Attempt to read a structure from a given source, failing if an error occurs during deserialization or reading. Read more

Identity provider who signed the identity object the credential is derived from. Read more

Beginning of the month in milliseconds since unix epoch when the credential was created. Read more

Beginning of the month where the credential is no longer valid, in milliseconds since unix epoch. Read more

Get the next attribute, storing it in the provided buffer. The return value, if Some, is a pair of an attribute tag, and the length, n of the attribute value. In this case, the attribute value is written in the first n bytes of the provided buffer. The rest of the buffer is unchanged. Read more

Get an iterator over all the attributes of the policy.

Attempt to write the structure into the provided writer, failing if only part of the structure could be written. 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

Returns the argument unchanged.

Calls U::from(self).

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

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.