Struct ethcore::trace::Config  
                   
                       [−]
                   
               [src]
pub struct Config {
    pub enabled: bool,
    pub blooms: BloomConfig,
    pub pref_cache_size: usize,
    pub max_cache_size: usize,
}Traces config.
Fields
enabled: bool
                           Indicates if tracing should be enabled or not. If it's None, it will be automatically configured.
blooms: BloomConfig
                           Traces blooms configuration.
pref_cache_size: usize
                           Preferef cache-size.
max_cache_size: usize
                           Max cache-size.
Trait Implementations
impl Debug for Config[src] 
impl Debug for Configfn fmt(&self, __arg_0: &mut Formatter) -> Result[src] 
fn fmt(&self, __arg_0: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl PartialEq for Config[src] 
impl PartialEq for Configfn eq(&self, __arg_0: &Config) -> bool[src] 
fn eq(&self, __arg_0: &Config) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &Config) -> bool[src] 
fn ne(&self, __arg_0: &Config) -> boolThis method tests for !=.
impl Clone for Config[src] 
impl Clone for Configfn clone(&self) -> Config[src] 
fn clone(&self) -> ConfigReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src] 
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl Default for Config[src] 
impl Default for Config