pub struct PriceOracleV1 {
pub fee: u64,
pub hash: String,
pub price: Usd,
pub public_key: String,
pub block_height: u64,
}
Fields§
§fee: u64
§hash: String
§price: Usd
§public_key: String
§block_height: u64
Trait Implementations§
Source§impl Clone for PriceOracleV1
impl Clone for PriceOracleV1
Source§fn clone(&self) -> PriceOracleV1
fn clone(&self) -> PriceOracleV1
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for PriceOracleV1
impl Debug for PriceOracleV1
Source§impl<'de> Deserialize<'de> for PriceOracleV1
impl<'de> Deserialize<'de> for PriceOracleV1
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 PriceOracleV1
impl RefUnwindSafe for PriceOracleV1
impl Send for PriceOracleV1
impl Sync for PriceOracleV1
impl Unpin for PriceOracleV1
impl UnwindSafe for PriceOracleV1
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