pub struct ParsedPriceFeedTwap {
pub id: String,
pub start_timestamp: i64,
pub end_timestamp: i64,
pub twap: RpcPrice,
pub down_slots_ratio: String,
}
Fields§
§id: String
§start_timestamp: i64
§end_timestamp: i64
§twap: RpcPrice
§down_slots_ratio: String
Trait Implementations§
Source§impl Debug for ParsedPriceFeedTwap
impl Debug for ParsedPriceFeedTwap
Source§impl<'de> Deserialize<'de> for ParsedPriceFeedTwap
impl<'de> Deserialize<'de> for ParsedPriceFeedTwap
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ParsedPriceFeedTwap
impl RefUnwindSafe for ParsedPriceFeedTwap
impl Send for ParsedPriceFeedTwap
impl Sync for ParsedPriceFeedTwap
impl Unpin for ParsedPriceFeedTwap
impl UnwindSafe for ParsedPriceFeedTwap
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