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