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