pub struct HttpTracker {
pub enabled: bool,
pub bind_address: String,
pub ssl_enabled: bool,
pub ssl_cert_path: Option<String>,
pub ssl_key_path: Option<String>,
}Fields§
§enabled: bool§bind_address: String§ssl_enabled: bool§ssl_cert_path: Option<String>§ssl_key_path: Option<String>Trait Implementations§
source§impl Clone for HttpTracker
impl Clone for HttpTracker
source§fn clone(&self) -> HttpTracker
fn clone(&self) -> HttpTracker
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for HttpTracker
impl Debug for HttpTracker
source§impl<'de> Deserialize<'de> for HttpTracker
impl<'de> Deserialize<'de> for HttpTracker
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq<HttpTracker> for HttpTracker
impl PartialEq<HttpTracker> for HttpTracker
source§fn eq(&self, other: &HttpTracker) -> bool
fn eq(&self, other: &HttpTracker) -> bool
This method tests for
self and other values to be equal, and is used
by ==.