Struct openethereum::blockchain::ExportState
source · [−]pub struct ExportState {Show 17 fields
pub spec: SpecType,
pub cache_config: CacheConfig,
pub dirs: Directories,
pub file_path: Option<String>,
pub format: Option<DataFormat>,
pub pruning: Pruning,
pub pruning_history: u64,
pub pruning_memory: usize,
pub compaction: DatabaseCompactionProfile,
pub fat_db: Switch,
pub tracing: Switch,
pub at: BlockId,
pub storage: bool,
pub code: bool,
pub min_balance: Option<U256>,
pub max_balance: Option<U256>,
pub max_round_blocks_to_import: usize,
}
Fields
spec: SpecType
cache_config: CacheConfig
dirs: Directories
file_path: Option<String>
format: Option<DataFormat>
pruning: Pruning
pruning_history: u64
pruning_memory: usize
compaction: DatabaseCompactionProfile
fat_db: Switch
tracing: Switch
at: BlockId
storage: bool
code: bool
min_balance: Option<U256>
max_balance: Option<U256>
max_round_blocks_to_import: usize
Trait Implementations
sourceimpl Debug for ExportState
impl Debug for ExportState
sourceimpl PartialEq<ExportState> for ExportState
impl PartialEq<ExportState> for ExportState
sourcefn eq(&self, other: &ExportState) -> bool
fn eq(&self, other: &ExportState) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ExportState) -> bool
fn ne(&self, other: &ExportState) -> bool
This method tests for !=
.
impl StructuralPartialEq for ExportState
Auto Trait Implementations
impl RefUnwindSafe for ExportState
impl Send for ExportState
impl Sync for ExportState
impl Unpin for ExportState
impl UnwindSafe for ExportState
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more