@@ -92,19 +92,16 @@ impl<T: Configuration + ?Sized> Configuration for Box<T> {
9292}
9393
9494/// Type to sort config properties via kind (files, env, cli), via groups and via roles.
95- /// HashMap<Role, HashMap<RoleGroup, HashMap<PropertyNameKind, BTreeMap<PropertyName, PropertyValue>>>>
9695pub type RoleConfigByPropertyKind =
9796 HashMap < String , HashMap < String , HashMap < PropertyNameKind , BTreeMap < String , Option < String > > > > > ;
9897
9998/// Type to sort config properties via kind (files, env, cli) and via groups.
100- /// HashMap<RoleGroup, HashMap<PropertyNameKind, BTreeMap<PropertyName, PropertyValue>>>
10199pub type RoleGroupConfigByPropertyKind =
102100 HashMap < String , HashMap < PropertyNameKind , BTreeMap < String , Option < String > > > > ;
103101
104102/// Type to sort config properties via kind (files, env, cli), via groups and via roles. This
105103/// is the validated output to be used in other operators. The difference to [`RoleConfigByPropertyKind`]
106104/// is that the properties BTreeMap does not contain any options.
107- /// /// HashMap<Role, HashMap<RoleGroup, HashMap<PropertyNameKind, BTreeMap<PropertyName, Option<PropertyValue>>>>>
108105pub type ValidatedRoleConfigByPropertyKind =
109106 HashMap < String , HashMap < String , HashMap < PropertyNameKind , BTreeMap < String , String > > > > ;
110107
0 commit comments