pub type ServerModuleConfigGenParamsRegistry = ModuleRegistry<ConfigGenModuleParams>;
Expand description

Registry that contains the config gen params for all modules

Aliased Type§

struct ServerModuleConfigGenParamsRegistry {
    inner: BTreeMap<u16, (ModuleKind, ConfigGenModuleParams)>,
    state: (),
}

Fields§

§inner: BTreeMap<u16, (ModuleKind, ConfigGenModuleParams)>§state: ()

Trait Implementations§

source§

impl<'de> Deserialize<'de> for ServerModuleConfigGenParamsRegistry

source§

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 for ServerModuleConfigGenParamsRegistry

source§

fn eq(&self, other: &Self) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Serialize for ServerModuleConfigGenParamsRegistry

source§

fn serialize<S: Serializer>(&self, serializer: S) -> Result<S::Ok, S::Error>

Serialize this value into the given Serde serializer. Read more
source§

impl Eq for ServerModuleConfigGenParamsRegistry