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