pub struct OracleHeartbeat {
pub oracle: Pubkey,
pub oracle_authority: Pubkey,
pub token_account: Pubkey,
pub gc_oracle: Pubkey,
pub oracle_queue: Pubkey,
pub permission: Pubkey,
pub data_buffer: Pubkey,
}
Fields§
§oracle: Pubkey
§token_account: Pubkey
§gc_oracle: Pubkey
§oracle_queue: Pubkey
§permission: Pubkey
§data_buffer: Pubkey
Trait Implementations§
source§impl Discriminator for OracleHeartbeat
impl Discriminator for OracleHeartbeat
const DISCRIMINATOR: [u8; 8] = _
fn discriminator() -> [u8; 8]
Auto Trait Implementations§
impl Freeze for OracleHeartbeat
impl RefUnwindSafe for OracleHeartbeat
impl Send for OracleHeartbeat
impl Sync for OracleHeartbeat
impl Unpin for OracleHeartbeat
impl UnwindSafe for OracleHeartbeat
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> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more