#[repr(packed)]
pub struct AggregatorAccountData {
Show 24 fields pub name: [u8; 32], pub metadata: [u8; 128], pub author_wallet: Pubkey, pub queue_pubkey: Pubkey, pub oracle_request_batch_size: u32, pub min_oracle_results: u32, pub min_job_results: u32, pub min_update_delay_seconds: u32, pub start_after: i64, pub variance_threshold: SwitchboardDecimal, pub force_report_period: i64, pub expiration: i64, pub consecutive_failure_count: u64, pub next_allowed_update_time: i64, pub is_locked: bool, pub _schedule: [u8; 32], pub latest_confirmed_round: AggregatorRound, pub current_round: AggregatorRound, pub job_pubkeys_data: [Pubkey; 16], pub job_hashes: [Hash; 16], pub job_pubkeys_size: u32, pub jobs_checksum: [u8; 32], pub authority: Pubkey, pub _ebuf: [u8; 224],
}

Fields

name: [u8; 32]metadata: [u8; 128]author_wallet: Pubkeyqueue_pubkey: Pubkeyoracle_request_batch_size: u32min_oracle_results: u32min_job_results: u32min_update_delay_seconds: u32start_after: i64variance_threshold: SwitchboardDecimalforce_report_period: i64expiration: i64consecutive_failure_count: u64next_allowed_update_time: i64is_locked: bool_schedule: [u8; 32]latest_confirmed_round: AggregatorRoundcurrent_round: AggregatorRoundjob_pubkeys_data: [Pubkey; 16]job_hashes: [Hash; 16]job_pubkeys_size: u32jobs_checksum: [u8; 32]authority: Pubkey_ebuf: [u8; 224]

Implementations

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

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

Self must have the same layout as the specified Bits except for the possible invalid bit patterns being checked during is_valid_bit_pattern. Read more

If this function returns true, then it must be valid to reinterpret bits as &Self.

Returns the argument unchanged.

Calls U::from(self).

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

Should always be Self

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.