pub struct WithdrawFundsResponse {
pub data: WithdrawFundsResponseData,
}Expand description
WithdrawFundsResponse
JSON schema
{
"examples": [
{
"data": {
"error": [],
"errors": [],
"result": {
"reference_id": "reference_123"
}
}
}
],
"type": "object",
"required": [
"data"
],
"properties": {
"data": {
"type": "object",
"required": [
"result"
],
"properties": {
"error": {
"type": "array",
"items": {}
},
"errors": {
"type": "array",
"items": {}
},
"result": {
"type": [
"object",
"null"
],
"required": [
"reference_id"
],
"properties": {
"reference_id": {
"type": "string"
}
}
}
}
}
}
}Fields§
§data: WithdrawFundsResponseDataTrait Implementations§
Source§impl Clone for WithdrawFundsResponse
impl Clone for WithdrawFundsResponse
Source§fn clone(&self) -> WithdrawFundsResponse
fn clone(&self) -> WithdrawFundsResponse
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 WithdrawFundsResponse
impl Debug for WithdrawFundsResponse
Source§impl<'de> Deserialize<'de> for WithdrawFundsResponse
impl<'de> Deserialize<'de> for WithdrawFundsResponse
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<&WithdrawFundsResponse> for WithdrawFundsResponse
impl From<&WithdrawFundsResponse> for WithdrawFundsResponse
Source§fn from(value: &WithdrawFundsResponse) -> Self
fn from(value: &WithdrawFundsResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for WithdrawFundsResponse
impl RefUnwindSafe for WithdrawFundsResponse
impl Send for WithdrawFundsResponse
impl Sync for WithdrawFundsResponse
impl Unpin for WithdrawFundsResponse
impl UnsafeUnpin for WithdrawFundsResponse
impl UnwindSafe for WithdrawFundsResponse
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