pub struct MarkPriceResponse {
pub event_time: u64,
pub symbol: String,
pub mark_price: f64,
pub index_price: f64,
pub estimated_settle_price: f64,
pub funding_rate: f64,
pub next_funding_time: u64,
}Fields§
§event_time: u64§symbol: String§mark_price: f64§index_price: f64§estimated_settle_price: f64§funding_rate: f64§next_funding_time: u64Trait Implementations§
Source§impl Clone for MarkPriceResponse
impl Clone for MarkPriceResponse
Source§fn clone(&self) -> MarkPriceResponse
fn clone(&self) -> MarkPriceResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 MarkPriceResponse
impl Debug for MarkPriceResponse
Source§impl<'de> Deserialize<'de> for MarkPriceResponse
impl<'de> Deserialize<'de> for MarkPriceResponse
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 MarkPriceResponse
impl RefUnwindSafe for MarkPriceResponse
impl Send for MarkPriceResponse
impl Sync for MarkPriceResponse
impl Unpin for MarkPriceResponse
impl UnsafeUnpin for MarkPriceResponse
impl UnwindSafe for MarkPriceResponse
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