pub struct EcosystemConfig {
pub ip_url: Option<String>,
pub dns_url: Option<String>,
pub tls_url: Option<String>,
}Expand description
URLs for the other services in the netray.info ecosystem.
Each service may expose a subset of these fields. Fields set to None
mean the corresponding integration is disabled.
Fields§
§ip_url: Option<String>Public base URL of the IP enrichment service (ip.netray.info).
dns_url: Option<String>Public base URL of the DNS inspector service (dns.netray.info).
tls_url: Option<String>Public base URL of the TLS inspector service (tls.netray.info).
Trait Implementations§
Source§impl Clone for EcosystemConfig
impl Clone for EcosystemConfig
Source§fn clone(&self) -> EcosystemConfig
fn clone(&self) -> EcosystemConfig
Returns a duplicate 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 EcosystemConfig
impl Debug for EcosystemConfig
Source§impl Default for EcosystemConfig
impl Default for EcosystemConfig
Source§fn default() -> EcosystemConfig
fn default() -> EcosystemConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EcosystemConfig
impl<'de> Deserialize<'de> for EcosystemConfig
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
Auto Trait Implementations§
impl Freeze for EcosystemConfig
impl RefUnwindSafe for EcosystemConfig
impl Send for EcosystemConfig
impl Sync for EcosystemConfig
impl Unpin for EcosystemConfig
impl UnsafeUnpin for EcosystemConfig
impl UnwindSafe for EcosystemConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more