pub struct TransactionErrorMetrics {Show 16 fields
pub total: usize,
pub account_in_use: usize,
pub account_loaded_twice: usize,
pub account_not_found: usize,
pub blockhash_not_found: usize,
pub blockhash_too_old: usize,
pub call_chain_too_deep: usize,
pub already_processed: usize,
pub instruction_error: usize,
pub insufficient_funds: usize,
pub invalid_account_for_fee: usize,
pub invalid_account_index: usize,
pub invalid_program_for_execution: usize,
pub not_allowed_during_cluster_maintenance: usize,
pub invalid_writable_account: usize,
pub invalid_rent_paying_account: usize,
}
Fields
total: usize
account_in_use: usize
account_loaded_twice: usize
account_not_found: usize
blockhash_not_found: usize
blockhash_too_old: usize
call_chain_too_deep: usize
already_processed: usize
instruction_error: usize
insufficient_funds: usize
invalid_account_for_fee: usize
invalid_account_index: usize
invalid_program_for_execution: usize
not_allowed_during_cluster_maintenance: usize
invalid_writable_account: usize
invalid_rent_paying_account: usize
Implementations
sourceimpl TransactionErrorMetrics
impl TransactionErrorMetrics
pub fn new() -> Self
pub fn accumulate(&mut self, other: &TransactionErrorMetrics)
pub fn report(&self, id: u32, slot: Slot)
Trait Implementations
sourceimpl Debug for TransactionErrorMetrics
impl Debug for TransactionErrorMetrics
sourceimpl Default for TransactionErrorMetrics
impl Default for TransactionErrorMetrics
sourcefn default() -> TransactionErrorMetrics
fn default() -> TransactionErrorMetrics
Returns the “default value” for a type. Read more
Auto Trait Implementations
impl RefUnwindSafe for TransactionErrorMetrics
impl Send for TransactionErrorMetrics
impl Sync for TransactionErrorMetrics
impl Unpin for TransactionErrorMetrics
impl UnwindSafe for TransactionErrorMetrics
Blanket Implementations
sourceimpl<T> AbiExample for T
impl<T> AbiExample for T
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
impl<T> Pointable for T
impl<T> Pointable for T
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
fn vzip(self) -> V
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more