pub struct TransactionRecord {
pub signature: String,
pub slot: u64,
pub block_time: Option<i64>,
pub err: Option<Value>,
pub memo: Option<String>,
pub confirmation_status: Option<String>,
}Expand description
A single entry from getSignaturesForAddress.
Fields§
§signature: StringTransaction signature (base-58).
slot: u64Slot the transaction was processed in.
block_time: Option<i64>Block time as Unix timestamp (may be absent for very old txns).
err: Option<Value>Whether the transaction had an error.
memo: Option<String>Optional memo string.
confirmation_status: Option<String>Confirmation status.
Trait Implementations§
Source§impl Clone for TransactionRecord
impl Clone for TransactionRecord
Source§fn clone(&self) -> TransactionRecord
fn clone(&self) -> TransactionRecord
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 Debug for TransactionRecord
impl Debug for TransactionRecord
Source§impl<'de> Deserialize<'de> for TransactionRecord
impl<'de> Deserialize<'de> for TransactionRecord
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
Auto Trait Implementations§
impl Freeze for TransactionRecord
impl RefUnwindSafe for TransactionRecord
impl Send for TransactionRecord
impl Sync for TransactionRecord
impl Unpin for TransactionRecord
impl UnsafeUnpin for TransactionRecord
impl UnwindSafe for TransactionRecord
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