pub struct LendingPositionChangedResponse {
pub daily_purchase_id: i64,
pub success: bool,
pub time: i64,
}
Expand description
LendingPositionChangedResponse
JSON schema
{
"type": "object",
"required": [
"dailyPurchaseId",
"success",
"time"
],
"properties": {
"dailyPurchaseId": {
"examples": [
862290
],
"type": "integer",
"format": "int64"
},
"success": {
"type": "boolean"
},
"time": {
"examples": [
1577233578000
],
"type": "integer",
"format": "int64"
}
}
}
Fields§
§daily_purchase_id: i64
§success: bool
§time: i64
Trait Implementations§
Source§impl Clone for LendingPositionChangedResponse
impl Clone for LendingPositionChangedResponse
Source§fn clone(&self) -> LendingPositionChangedResponse
fn clone(&self) -> LendingPositionChangedResponse
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 LendingPositionChangedResponse
impl<'de> Deserialize<'de> for LendingPositionChangedResponse
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<&LendingPositionChangedResponse> for LendingPositionChangedResponse
impl From<&LendingPositionChangedResponse> for LendingPositionChangedResponse
Source§fn from(value: &LendingPositionChangedResponse) -> Self
fn from(value: &LendingPositionChangedResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for LendingPositionChangedResponse
impl RefUnwindSafe for LendingPositionChangedResponse
impl Send for LendingPositionChangedResponse
impl Sync for LendingPositionChangedResponse
impl Unpin for LendingPositionChangedResponse
impl UnwindSafe for LendingPositionChangedResponse
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