Struct Price

Source
#[repr(C)]
pub struct Price {
Show 22 fields pub magic: u32, pub ver: u32, pub atype: u32, pub size: u32, pub ptype: PriceType, pub expo: i32, pub num: u32, pub num_qt: u32, pub last_slot: u64, pub valid_slot: u64, pub ema_price: Ema, pub ema_confidence: Ema, pub drv1: i64, pub drv2: i64, pub prod: AccKey, pub next: AccKey, pub prev_slot: u64, pub prev_price: i64, pub prev_conf: u64, pub drv3: i64, pub agg: PriceInfo, pub comp: [PriceComp; 32],
}
👎Deprecated: This crate has been deprecated. Please use pyth-sdk-solana instead.
Expand description

Price accounts represent a continuously-updating price feed for a product.

Fields§

§magic: u32
👎Deprecated: This crate has been deprecated. Please use pyth-sdk-solana instead.

pyth magic number

§ver: u32
👎Deprecated: This crate has been deprecated. Please use pyth-sdk-solana instead.

program version

§atype: u32
👎Deprecated: This crate has been deprecated. Please use pyth-sdk-solana instead.

account type

§size: u32
👎Deprecated: This crate has been deprecated. Please use pyth-sdk-solana instead.

price account size

§ptype: PriceType
👎Deprecated: This crate has been deprecated. Please use pyth-sdk-solana instead.

price or calculation type

§expo: i32
👎Deprecated: This crate has been deprecated. Please use pyth-sdk-solana instead.

price exponent

§num: u32
👎Deprecated: This crate has been deprecated. Please use pyth-sdk-solana instead.

number of component prices

§num_qt: u32
👎Deprecated: This crate has been deprecated. Please use pyth-sdk-solana instead.

number of quoters that make up aggregate

§last_slot: u64
👎Deprecated: This crate has been deprecated. Please use pyth-sdk-solana instead.

slot of last valid (not unknown) aggregate price

§valid_slot: u64
👎Deprecated: This crate has been deprecated. Please use pyth-sdk-solana instead.

valid slot-time of agg. price

§ema_price: Ema
👎Deprecated: This crate has been deprecated. Please use pyth-sdk-solana instead.

exponential moving average price

§ema_confidence: Ema
👎Deprecated: This crate has been deprecated. Please use pyth-sdk-solana instead.

exponential moving average confidence interval

§drv1: i64
👎Deprecated: This crate has been deprecated. Please use pyth-sdk-solana instead.

space for future derived values

§drv2: i64
👎Deprecated: This crate has been deprecated. Please use pyth-sdk-solana instead.

space for future derived values

§prod: AccKey
👎Deprecated: This crate has been deprecated. Please use pyth-sdk-solana instead.

product account key

§next: AccKey
👎Deprecated: This crate has been deprecated. Please use pyth-sdk-solana instead.

next Price account in linked list

§prev_slot: u64
👎Deprecated: This crate has been deprecated. Please use pyth-sdk-solana instead.

valid slot of previous update

§prev_price: i64
👎Deprecated: This crate has been deprecated. Please use pyth-sdk-solana instead.

aggregate price of previous update

§prev_conf: u64
👎Deprecated: This crate has been deprecated. Please use pyth-sdk-solana instead.

confidence interval of previous update

§drv3: i64
👎Deprecated: This crate has been deprecated. Please use pyth-sdk-solana instead.

space for future derived values

§agg: PriceInfo
👎Deprecated: This crate has been deprecated. Please use pyth-sdk-solana instead.

aggregate price info

§comp: [PriceComp; 32]
👎Deprecated: This crate has been deprecated. Please use pyth-sdk-solana instead.

price components one per quoter

Implementations§

Source§

impl Price

Source

pub fn get_current_price_status(&self) -> PriceStatus

👎Deprecated: This crate has been deprecated. Please use pyth-sdk-solana instead.

Get the current status of the aggregate price. If this lib is used on-chain it will mark price status as unknown if price has not been updated for a while.

Source

pub fn get_current_price(&self) -> Option<PriceConf>

👎Deprecated: This crate has been deprecated. Please use pyth-sdk-solana instead.

Get the current price and confidence interval as fixed-point numbers of the form a * 10^e. Returns a struct containing the current price, confidence interval, and the exponent for both numbers. Returns None if price information is currently unavailable for any reason.

Source

pub fn get_ema_price(&self) -> Option<PriceConf>

👎Deprecated: This crate has been deprecated. Please use pyth-sdk-solana instead.

Get the exponential moving average price (ema_price) and a confidence interval on the result. Returns None if the ema_price is currently unavailable.

At the moment, the confidence interval returned by this method is computed in a somewhat questionable way, so we do not recommend using it for high-value applications.

Source

pub fn get_price_in_quote( &self, quote: &Price, result_expo: i32, ) -> Option<PriceConf>

👎Deprecated: This crate has been deprecated. Please use pyth-sdk-solana instead.

Get the current price of this account in a different quote currency. If this account represents the price of the product X/Z, and quote represents the price of the product Y/Z, this method returns the price of X/Y. Use this method to get the price of e.g., mSOL/SOL from the mSOL/USD and SOL/USD accounts.

result_expo determines the exponent of the result, i.e., the number of digits below the decimal point. This method returns None if either the price or confidence are too large to be represented with the requested exponent.

Source

pub fn price_basket( amounts: &[(Price, i64, i32)], result_expo: i32, ) -> Option<PriceConf>

👎Deprecated: This crate has been deprecated. Please use pyth-sdk-solana instead.

Get the price of a basket of currencies. Each entry in amounts is of the form (price, qty, qty_expo), and the result is the sum of price * qty * 10^qty_expo. The result is returned with exponent result_expo.

An example use case for this function is to get the value of an LP token.

Trait Implementations§

Source§

impl Clone for Price

Source§

fn clone(&self) -> Price

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Price

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for Price

Source§

fn default() -> Price

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

impl PartialEq for Price

Source§

fn eq(&self, other: &Price) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Zeroable for Price

Source§

fn zeroed() -> Self

Source§

impl Copy for Price

Source§

impl Eq for Price

Source§

impl Pod for Price

Source§

impl StructuralPartialEq for Price

Auto Trait Implementations§

§

impl Freeze for Price

§

impl RefUnwindSafe for Price

§

impl Send for Price

§

impl Sync for Price

§

impl Unpin for Price

§

impl UnwindSafe for Price

Blanket Implementations§

Source§

impl<T> AbiExample for T

Source§

default fn example() -> T

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CheckedBitPattern for T
where T: AnyBitPattern,

Source§

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

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

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

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

Source§

impl<T> IntoEither for T

Source§

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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> AnyBitPattern for T
where T: Pod,

Source§

impl<T> NoUninit for T
where T: Pod,