pub struct InitiateMasterAccountWithdrawalResponseResult {
pub reference_id: String,
}Expand description
InitiateMasterAccountWithdrawalResponseResult
JSON schema
{
"type": "object",
"required": [
"reference_id"
],
"properties": {
"reference_id": {
"type": "string"
}
}
}Fields§
§reference_id: StringTrait Implementations§
Source§impl Clone for InitiateMasterAccountWithdrawalResponseResult
impl Clone for InitiateMasterAccountWithdrawalResponseResult
Source§fn clone(&self) -> InitiateMasterAccountWithdrawalResponseResult
fn clone(&self) -> InitiateMasterAccountWithdrawalResponseResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 InitiateMasterAccountWithdrawalResponseResult
impl<'de> Deserialize<'de> for InitiateMasterAccountWithdrawalResponseResult
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<&InitiateMasterAccountWithdrawalResponseResult> for InitiateMasterAccountWithdrawalResponseResult
impl From<&InitiateMasterAccountWithdrawalResponseResult> for InitiateMasterAccountWithdrawalResponseResult
Source§fn from(value: &InitiateMasterAccountWithdrawalResponseResult) -> Self
fn from(value: &InitiateMasterAccountWithdrawalResponseResult) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for InitiateMasterAccountWithdrawalResponseResult
impl RefUnwindSafe for InitiateMasterAccountWithdrawalResponseResult
impl Send for InitiateMasterAccountWithdrawalResponseResult
impl Sync for InitiateMasterAccountWithdrawalResponseResult
impl Unpin for InitiateMasterAccountWithdrawalResponseResult
impl UnsafeUnpin for InitiateMasterAccountWithdrawalResponseResult
impl UnwindSafe for InitiateMasterAccountWithdrawalResponseResult
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