pub struct FuturesHistDataLinkResponse {
pub data: Vec<FuturesHistDataLinkResponseDataItem>,
}
Expand description
FuturesHistDataLinkResponse
JSON schema
{
"type": "object",
"required": [
"data"
],
"properties": {
"data": {
"type": "array",
"items": {
"type": "object",
"required": [
"day",
"url"
],
"properties": {
"day": {
"examples": [
"2023-06-30"
],
"type": "string"
},
"url": {
"examples": [
"https://bin-prod-user-rebate-bucket.s3.ap-northeast-1.amazonaws.com/xxx"
],
"type": "string"
}
}
}
}
}
}
Fields§
§data: Vec<FuturesHistDataLinkResponseDataItem>
Trait Implementations§
Source§impl Clone for FuturesHistDataLinkResponse
impl Clone for FuturesHistDataLinkResponse
Source§fn clone(&self) -> FuturesHistDataLinkResponse
fn clone(&self) -> FuturesHistDataLinkResponse
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 FuturesHistDataLinkResponse
impl Debug for FuturesHistDataLinkResponse
Source§impl<'de> Deserialize<'de> for FuturesHistDataLinkResponse
impl<'de> Deserialize<'de> for FuturesHistDataLinkResponse
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<&FuturesHistDataLinkResponse> for FuturesHistDataLinkResponse
impl From<&FuturesHistDataLinkResponse> for FuturesHistDataLinkResponse
Source§fn from(value: &FuturesHistDataLinkResponse) -> Self
fn from(value: &FuturesHistDataLinkResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for FuturesHistDataLinkResponse
impl RefUnwindSafe for FuturesHistDataLinkResponse
impl Send for FuturesHistDataLinkResponse
impl Sync for FuturesHistDataLinkResponse
impl Unpin for FuturesHistDataLinkResponse
impl UnwindSafe for FuturesHistDataLinkResponse
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