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