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