pub struct GetMarginAccountMovementsResponse {
pub movements: Option<Vec<MarginAccountMovement>>,
pub page: Option<u32>,
pub page_size: Option<u32>,
pub total: Option<u32>,
}Expand description
GetMarginAccountMovementsResponse
JSON schema
{
"type": "object",
"properties": {
"movements": {
"type": [
"array",
"null"
],
"items": {
"$ref": "#/components/schemas/MarginAccountMovement"
}
},
"page": {
"type": [
"integer",
"null"
],
"format": "uint32"
},
"pageSize": {
"type": [
"integer",
"null"
],
"format": "uint32"
},
"total": {
"type": [
"integer",
"null"
],
"format": "uint32"
}
}
}Fields§
§movements: Option<Vec<MarginAccountMovement>>§page: Option<u32>§page_size: Option<u32>§total: Option<u32>Trait Implementations§
Source§impl Clone for GetMarginAccountMovementsResponse
impl Clone for GetMarginAccountMovementsResponse
Source§fn clone(&self) -> GetMarginAccountMovementsResponse
fn clone(&self) -> GetMarginAccountMovementsResponse
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<'de> Deserialize<'de> for GetMarginAccountMovementsResponse
impl<'de> Deserialize<'de> for GetMarginAccountMovementsResponse
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 GetMarginAccountMovementsResponse
impl RefUnwindSafe for GetMarginAccountMovementsResponse
impl Send for GetMarginAccountMovementsResponse
impl Sync for GetMarginAccountMovementsResponse
impl Unpin for GetMarginAccountMovementsResponse
impl UnsafeUnpin for GetMarginAccountMovementsResponse
impl UnwindSafe for GetMarginAccountMovementsResponse
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