Trait openethereum::informant::InformantData
source · [−]pub trait InformantData: Send + Sync {
fn executes_transactions(&self) -> bool;
fn is_major_importing(&self) -> bool;
fn report(&self) -> Report;
}
Expand description
Something which can provide data to the informant.
Required methods
fn executes_transactions(&self) -> bool
fn executes_transactions(&self) -> bool
Whether it executes transactions
fn is_major_importing(&self) -> bool
fn is_major_importing(&self) -> bool
Whether it is currently importing (also included in Report
)