Struct tor_netdoc::doc::netstatus::NetParams
source · pub struct NetParams<T> { /* private fields */ }
Expand description
A set of named network parameters.
These are used to describe current settings for the Tor network, current weighting parameters for path selection, and so on. They’re encoded with a space-separated K=V format.
A NetParams<i32>
is part of the validated directory manager configuration,
where it is built (in the builder-pattern sense) from a transparent HashMap.
Implementations§
Trait Implementations§
source§impl<'de, T> Deserialize<'de> for NetParams<T>where
T: Deserialize<'de>,
impl<'de, T> Deserialize<'de> for NetParams<T>where
T: Deserialize<'de>,
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