pub struct MarginNextHourlyInterestRateResponseItem {
pub asset: String,
pub next_hourly_interest_rate: String,
}
Expand description
MarginNextHourlyInterestRateResponseItem
JSON schema
{
"type": "object",
"required": [
"asset",
"nextHourlyInterestRate"
],
"properties": {
"asset": {
"examples": [
"BTC"
],
"type": "string"
},
"nextHourlyInterestRate": {
"examples": [
"0.00000571"
],
"type": "string"
}
}
}
Fields§
§asset: String
§next_hourly_interest_rate: String
Trait Implementations§
Source§impl Clone for MarginNextHourlyInterestRateResponseItem
impl Clone for MarginNextHourlyInterestRateResponseItem
Source§fn clone(&self) -> MarginNextHourlyInterestRateResponseItem
fn clone(&self) -> MarginNextHourlyInterestRateResponseItem
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<'de> Deserialize<'de> for MarginNextHourlyInterestRateResponseItem
impl<'de> Deserialize<'de> for MarginNextHourlyInterestRateResponseItem
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
Source§impl From<&MarginNextHourlyInterestRateResponseItem> for MarginNextHourlyInterestRateResponseItem
impl From<&MarginNextHourlyInterestRateResponseItem> for MarginNextHourlyInterestRateResponseItem
Source§fn from(value: &MarginNextHourlyInterestRateResponseItem) -> Self
fn from(value: &MarginNextHourlyInterestRateResponseItem) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for MarginNextHourlyInterestRateResponseItem
impl RefUnwindSafe for MarginNextHourlyInterestRateResponseItem
impl Send for MarginNextHourlyInterestRateResponseItem
impl Sync for MarginNextHourlyInterestRateResponseItem
impl Unpin for MarginNextHourlyInterestRateResponseItem
impl UnwindSafe for MarginNextHourlyInterestRateResponseItem
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