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