pub struct MarginAccountMovement {
pub amount: Option<String>,
pub asset: Option<String>,
pub created_at: Option<String>,
pub id: Option<String>,
pub movement_type: Option<String>,
pub status: Option<String>,
}Expand description
MarginAccountMovement
JSON schema
{
"type": "object",
"properties": {
"amount": {
"type": [
"string",
"null"
]
},
"asset": {
"type": [
"string",
"null"
]
},
"createdAt": {
"type": [
"string",
"null"
]
},
"id": {
"type": [
"string",
"null"
]
},
"movementType": {
"type": [
"string",
"null"
]
},
"status": {
"type": [
"string",
"null"
]
}
}
}Fields§
§amount: Option<String>§asset: Option<String>§created_at: Option<String>§id: Option<String>§movement_type: Option<String>§status: Option<String>Trait Implementations§
Source§impl Clone for MarginAccountMovement
impl Clone for MarginAccountMovement
Source§fn clone(&self) -> MarginAccountMovement
fn clone(&self) -> MarginAccountMovement
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 MarginAccountMovement
impl Debug for MarginAccountMovement
Source§impl Default for MarginAccountMovement
impl Default for MarginAccountMovement
Source§impl<'de> Deserialize<'de> for MarginAccountMovement
impl<'de> Deserialize<'de> for MarginAccountMovement
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 MarginAccountMovement
impl RefUnwindSafe for MarginAccountMovement
impl Send for MarginAccountMovement
impl Sync for MarginAccountMovement
impl Unpin for MarginAccountMovement
impl UnsafeUnpin for MarginAccountMovement
impl UnwindSafe for MarginAccountMovement
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