pub struct VrfAccountData {
    pub self_pubkey: Option<Vec<u8>>,
    pub randomness_producer_pubkey: Option<Vec<u8>>,
    pub fulfillment_manager_pubkey: Option<Vec<u8>>,
    pub min_proof_confirmations: Option<i32>,
    pub lock_configs: Option<bool>,
    pub counter: Option<u64>,
    pub msg: Option<Vec<u8>>,
    pub value: Option<Vec<u8>>,
    pub proof: Option<Vec<u8>>,
    pub num_proof_confirmations: Option<i32>,
    pub last_request_timestamp: Option<i64>,
    pub verifier_pubkeys: Vec<Vec<u8>>,
}

Fields

self_pubkey: Option<Vec<u8>>randomness_producer_pubkey: Option<Vec<u8>>fulfillment_manager_pubkey: Option<Vec<u8>>min_proof_confirmations: Option<i32>lock_configs: Option<bool>counter: Option<u64>msg: Option<Vec<u8>>value: Option<Vec<u8>>proof: Option<Vec<u8>>num_proof_confirmations: Option<i32>last_request_timestamp: Option<i64>verifier_pubkeys: Vec<Vec<u8>>

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

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

Constructs an instance of Self by reading from the given bytes via the given reader. Read more

Computes necessary binary size of self once serialized in protobuf

Writes Self into W writer

Writes self into a file

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

This method tests for !=.

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

Performs the conversion.

Performs the conversion.

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.