Struct shuttle_core::ManageDataOperation [] [src]

pub struct ManageDataOperation {
    pub source: Option<PublicKey>,
    pub name: String,
    pub value: Option<Vec<u8>>,
}

Add data entry to the ledger.

Fields

The source account for the operation.

The key of the data entry

The value of the data entry. A value of None will delete the entry.

Trait Implementations

impl Debug for ManageDataOperation
[src]

[src]

Formats the value using the given formatter.

impl Clone for ManageDataOperation
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for ManageDataOperation
[src]

[src]

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

[src]

This method tests for !=.

impl Eq for ManageDataOperation
[src]