pub struct SignatureInfoWithError {
pub block_time: u64,
pub error: Option<String>,
pub signature: String,
pub slot: u64,
}
Fields§
§block_time: u64
An Unix timestamp (seconds)
error: Option<String>
§signature: String
A Solana transaction signature.
slot: u64
Implementations§
Trait Implementations§
Source§impl Clone for SignatureInfoWithError
impl Clone for SignatureInfoWithError
Source§fn clone(&self) -> SignatureInfoWithError
fn clone(&self) -> SignatureInfoWithError
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 SignatureInfoWithError
impl Debug for SignatureInfoWithError
Source§impl Default for SignatureInfoWithError
impl Default for SignatureInfoWithError
Source§fn default() -> SignatureInfoWithError
fn default() -> SignatureInfoWithError
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SignatureInfoWithError
impl<'de> Deserialize<'de> for SignatureInfoWithError
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 SignatureInfoWithError
impl PartialEq for SignatureInfoWithError
Source§impl Serialize for SignatureInfoWithError
impl Serialize for SignatureInfoWithError
impl StructuralPartialEq for SignatureInfoWithError
Auto Trait Implementations§
impl Freeze for SignatureInfoWithError
impl RefUnwindSafe for SignatureInfoWithError
impl Send for SignatureInfoWithError
impl Sync for SignatureInfoWithError
impl Unpin for SignatureInfoWithError
impl UnwindSafe for SignatureInfoWithError
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