pub struct AssetAssetDividendResponse {
pub rows: Vec<AssetAssetDividendResponseRowsItem>,
pub total: i32,
}
Expand description
AssetAssetDividendResponse
JSON schema
{
"type": "object",
"required": [
"rows",
"total"
],
"properties": {
"rows": {
"type": "array",
"items": {
"type": "object",
"required": [
"amount",
"asset",
"divTime",
"enInfo",
"id",
"tranId"
],
"properties": {
"amount": {
"examples": [
"10.00000000"
],
"type": "string"
},
"asset": {
"examples": [
"BHFT"
],
"type": "string"
},
"divTime": {
"examples": [
1563189166000
],
"type": "integer",
"format": "int64"
},
"enInfo": {
"examples": [
"BHFT distribution"
],
"type": "string"
},
"id": {
"examples": [
242006910
],
"type": "integer",
"format": "int64"
},
"tranId": {
"examples": [
2968885920
],
"type": "integer",
"format": "int64"
}
}
}
},
"total": {
"examples": [
1
],
"type": "integer",
"format": "int32"
}
}
}
Fields§
§rows: Vec<AssetAssetDividendResponseRowsItem>
§total: i32
Trait Implementations§
Source§impl Clone for AssetAssetDividendResponse
impl Clone for AssetAssetDividendResponse
Source§fn clone(&self) -> AssetAssetDividendResponse
fn clone(&self) -> AssetAssetDividendResponse
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 AssetAssetDividendResponse
impl Debug for AssetAssetDividendResponse
Source§impl<'de> Deserialize<'de> for AssetAssetDividendResponse
impl<'de> Deserialize<'de> for AssetAssetDividendResponse
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<&AssetAssetDividendResponse> for AssetAssetDividendResponse
impl From<&AssetAssetDividendResponse> for AssetAssetDividendResponse
Source§fn from(value: &AssetAssetDividendResponse) -> Self
fn from(value: &AssetAssetDividendResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AssetAssetDividendResponse
impl RefUnwindSafe for AssetAssetDividendResponse
impl Send for AssetAssetDividendResponse
impl Sync for AssetAssetDividendResponse
impl Unpin for AssetAssetDividendResponse
impl UnwindSafe for AssetAssetDividendResponse
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