Struct openethereum::metrics::MetricsConfiguration
source · [−]pub struct MetricsConfiguration {
pub enabled: bool,
pub prefix: String,
pub interface: String,
pub port: u16,
}
Fields
enabled: bool
Are metrics enabled (default is false)?
prefix: String
Prefix
interface: String
The IP of the network interface used (default is 127.0.0.1).
port: u16
The network port (default is 3000).
Trait Implementations
sourceimpl Clone for MetricsConfiguration
impl Clone for MetricsConfiguration
sourcefn clone(&self) -> MetricsConfiguration
fn clone(&self) -> MetricsConfiguration
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for MetricsConfiguration
impl Debug for MetricsConfiguration
sourceimpl Default for MetricsConfiguration
impl Default for MetricsConfiguration
sourceimpl PartialEq<MetricsConfiguration> for MetricsConfiguration
impl PartialEq<MetricsConfiguration> for MetricsConfiguration
sourcefn eq(&self, other: &MetricsConfiguration) -> bool
fn eq(&self, other: &MetricsConfiguration) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &MetricsConfiguration) -> bool
fn ne(&self, other: &MetricsConfiguration) -> bool
This method tests for !=
.
impl StructuralPartialEq for MetricsConfiguration
Auto Trait Implementations
impl RefUnwindSafe for MetricsConfiguration
impl Send for MetricsConfiguration
impl Sync for MetricsConfiguration
impl Unpin for MetricsConfiguration
impl UnwindSafe for MetricsConfiguration
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
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more