pub struct AccountTransactionsContentInner {
pub address: String,
pub tx_hash: String,
pub tx_index: i32,
pub block_height: i32,
pub block_time: i32,
}Fields§
§address: StringBech32 address
tx_hash: StringHash of the transaction
tx_index: i32Transaction index within the block
block_height: i32Block height
block_time: i32Block creation time in UNIX time
Implementations§
Trait Implementations§
Source§impl Clone for AccountTransactionsContentInner
impl Clone for AccountTransactionsContentInner
Source§fn clone(&self) -> AccountTransactionsContentInner
fn clone(&self) -> AccountTransactionsContentInner
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 Default for AccountTransactionsContentInner
impl Default for AccountTransactionsContentInner
Source§fn default() -> AccountTransactionsContentInner
fn default() -> AccountTransactionsContentInner
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AccountTransactionsContentInner
impl<'de> Deserialize<'de> for AccountTransactionsContentInner
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 PartialEq for AccountTransactionsContentInner
impl PartialEq for AccountTransactionsContentInner
Source§fn eq(&self, other: &AccountTransactionsContentInner) -> bool
fn eq(&self, other: &AccountTransactionsContentInner) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AccountTransactionsContentInner
Auto Trait Implementations§
impl Freeze for AccountTransactionsContentInner
impl RefUnwindSafe for AccountTransactionsContentInner
impl Send for AccountTransactionsContentInner
impl Sync for AccountTransactionsContentInner
impl Unpin for AccountTransactionsContentInner
impl UnwindSafe for AccountTransactionsContentInner
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