pub struct LendingCustomizedFixedPurchaseResponse {
pub purchase_id: String,
}
Expand description
LendingCustomizedFixedPurchaseResponse
JSON schema
{
"type": "object",
"required": [
"purchaseId"
],
"properties": {
"purchaseId": {
"examples": [
"18356"
],
"type": "string"
}
}
}
Fields§
§purchase_id: String
Trait Implementations§
Source§impl Clone for LendingCustomizedFixedPurchaseResponse
impl Clone for LendingCustomizedFixedPurchaseResponse
Source§fn clone(&self) -> LendingCustomizedFixedPurchaseResponse
fn clone(&self) -> LendingCustomizedFixedPurchaseResponse
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 LendingCustomizedFixedPurchaseResponse
impl<'de> Deserialize<'de> for LendingCustomizedFixedPurchaseResponse
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<&LendingCustomizedFixedPurchaseResponse> for LendingCustomizedFixedPurchaseResponse
impl From<&LendingCustomizedFixedPurchaseResponse> for LendingCustomizedFixedPurchaseResponse
Source§fn from(value: &LendingCustomizedFixedPurchaseResponse) -> Self
fn from(value: &LendingCustomizedFixedPurchaseResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for LendingCustomizedFixedPurchaseResponse
impl RefUnwindSafe for LendingCustomizedFixedPurchaseResponse
impl Send for LendingCustomizedFixedPurchaseResponse
impl Sync for LendingCustomizedFixedPurchaseResponse
impl Unpin for LendingCustomizedFixedPurchaseResponse
impl UnwindSafe for LendingCustomizedFixedPurchaseResponse
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