Struct switchboard_solana::oracle_program::accounts::crank::CrankRow
source · #[repr(packed)]pub struct CrankRow {
pub pubkey: Pubkey,
pub next_timestamp: i64,
}Fields§
§pubkey: PubkeyThe PublicKey of the AggregatorAccountData.
next_timestamp: i64The aggregator’s next available update time.
Trait Implementations§
impl Copy for CrankRow
impl Pod for CrankRow
Auto Trait Implementations§
impl RefUnwindSafe for CrankRow
impl Send for CrankRow
impl Sync for CrankRow
impl Unpin for CrankRow
impl UnwindSafe for CrankRow
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
impl<T> CheckedBitPattern for Twhere T: AnyBitPattern,
§type Bits = T
type Bits = T
Self must have the same layout as the specified Bits except for
the possible invalid bit patterns being checked during
is_valid_bit_pattern.source§fn is_valid_bit_pattern(_bits: &T) -> bool
fn is_valid_bit_pattern(_bits: &T) -> bool
If this function returns true, then it must be valid to reinterpret
bits
as &Self.