hashmap_settings 0.6.1

HashMap wrapper for layered Settings
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
///module including `Incrementable` implementations
pub mod incrementable_implementations;

use core::{fmt::Debug, mem::replace};
use std::{
    collections::{HashMap, HashSet, hash_map},
    hash::Hash,
    option::Option,
};

#[cfg(feature = "serde")]
use serde::{Deserialize, Serialize};

use crate::stg::Setting;

/// A [`HashMap`] wrapper for layered settings.
///
/// The [`Stg`](crate::stg::Stg) type is a type abstraction that can be used to to have an `Account` with distinct types.
///
/// An `Account<N,K,S>` can also hold other [Accounts](Account#accounts). This allows for complex systems where
/// an app can have multiple layers of settings. The top most layer being the first one to be searched
/// for a specific setting, and in the case it isn't found the next layer will be search, this will be
/// done until the setting is found on the last layer that would be the default layer containing all the settings.
///
///
/// An `Account` contains the following fields:
///
///
///  - [name](Account#name): Name of type `N` ,
///
///  - [active](Account#active): [`bool`],
///
///  - [settings](Account#settings): A [`HashMap`]<`K`,`V`>,
///
///  - [accounts](Account#accounts): A [`Vec`]<`Account`>, of sub `Accounts`
///
///  - [valid](Account#valid): A [`Valid`] the `Account's` validity tracker
///
///
/// # New Account
///
///
/// A new Account can be created with:
///  - [`new`](Account::new): Create a new Account.
///
///  - [`new_unchecked`](Account::new_unchecked): Creates a new account without verifying its validity.
///
///  - [`clone`][Clone::clone]: Clone an existing Account.
///
/// An `AccountBuilder` is planned to be created in the [future](https://github.com/OxidizedLoop/HashMapSettings/issues/20).
///
///
/// # [Name](Account#name)
///
///
/// An `Account's` name is used to identify an Account in multiple methods involving [child `Accounts`](Account#accounts) .
///
/// For this reason child `Accounts` need to be uniquely named for the parent `Account` to be [valid](Account#valid) and `N`
/// is required to implement the [Incrementable] trait automatically increments the name in case of repetition.
///
///
///  - [`name`](Account::name): Get an account's name
///
///  - [`rename`](Account::rename): Rename an `Account`
///
///  - [`deep_rename`](Account::deep_rename): Rename a [child](Account#accounts) `Account`
///
///
/// # [Active](Account#active)
///
///
/// If a child `Account` is inactive it's settings will be ignore by the parent `Account`.
///
///  - [`active`](Account::active): Get an account's activity state
///
///  - [`change_activity`](Account::change_activity): Change the activity
///
///  - [`deep_change_activity`](Account::deep_change_activity): Change the activity of one of the child `Accounts`
///
///
/// # [Settings](Account#settings)
///
///
/// A `HashMap` holding [Settings](Setting). Contains all the settings present in the
/// [child](Account#accounts) Accounts but can contain settings that aren't in them.
///
///  - [`hashmap`](Account::hashmap): Returns a reference to [`HashMap`].
///
///  - [`get`](Account::get): Returns a reference to the value corresponding to the key
///
///  - [`insert`](Account::insert): Inserts a key-value pair into the map.
///
///  - [`deep_insert`](Account::deep_insert): Inserts a key-value pair into the map of a child Account.
///
///  - [`remove`](Account::remove): Removes a key-value pair from the map.
///
///  - [`deep_remove`](Account::deep_remove): Removes a key-value pair from the map of a child Account.
///
///  - [`keys`](Account::keys): An iterator visiting all keys in arbitrary order
///
///  - [`contains_key`](Account::contains_key): Returns `true` if the `Account` contains a value for the specified key.
///
///  - [`capacity`](Account::capacity): Returns the number of elements the map can hold without reallocating.
///
///  - [`update_setting`](Account::update_setting): Updates a setting with the value its supposed to have.
///
///  - [`update_setting`](Account::update_setting_returns): Updates a setting with the value its supposed to have and.
///
///  - [`update_setting`](Account::update_vec): Updates a group of settings with the value they are supposed to have.
///
///  - [`update_setting`](Account::update_all_settings): Updates all settings currently present in the Account with the value they are supposed to have.
///
///
/// # [Accounts](Account#accounts)
///
///
/// A `Vec` of Accounts. The Account that holds the `Vec` is the parent Account and the Accounts that are being held
/// are the child Accounts.
///
/// We consider the bottom layer of the `Vec` the Account at index 0, and the top layer the on at len()-1.
///
/// When the `Vec` is changed, the parent account will update its settings, such that when
/// we use [get()](Account::get) on the parent Account we obtain the value present in the top layer
/// containing the setting or return `None` if no layer contained it.
///
///  - [`accounts`](Account::accounts): Get an Account's child `Accounts`
///
///  - [`accounts`](Account::accounts): Return a `Vec` of names of the child `Accounts`.
///
///  - [`len`](Account::len): Returns the number of elements in the `Vec`.
///
///  - [`is_empty`](Account::is_empty): Returns `true` if the `Vec` contains no elements.
///
///  - [`push`](Account::push): Appends an `Account` to the back of the `Vec`.
///
///  - [`deep_push`](Account::deep_push): Appends an `Account` to the back of the `Vec`of a child `Account`.
///
///  - [`pop`](Account::pop): Removes the last element from a vector and returns it, or [`None`] if it is empty.
///
///  - [`deep_pop`](Account::deep_pop): Removes the last element from a vector of a child `Account`
///
///
/// # [Valid](Account#valid)
///  
///
/// A valid `Account` is one where it's methods will always behave as intended.
///
/// There are certain methods that may make an Account invalid if improperly used,
/// and that would make other methods have unindent effects.
///
/// If a method can make an `Account` invalid it will be mentioned.
///
///
/// ## Validity Defined:
///
///
/// `Account` contains a valid field of type [`Valid`] that tracks if an `Account` is valid.
///
/// `Valid` contains 3 `bool` fields corresponding to the 3 ways an account can be invalid:
///
/// - names: An `Account` is invalid if it's children `Accounts` have duplicated names.
///
/// - settings: An `Account` is invalid if it doesn't contain all settings present in it's children `Accounts`.
///
/// - accounts: An `Account` is invalid if it's children `Accounts` are themselves invalid.
///
/// If all the fields are true then the `Account` is valid.
///
/// An Account can be temporary made invalid for:
///
///  - efficiency (eg: using [push](Account::push) or [pop](Account::pop) repeatedly)
///
///  - using [deep_mut](Account::deep_mut) for something that isn't covered by the other [deep functions](Account#deep-functions).
///
/// But this should be fixed immediately after.
///
/// -[valid](Account::valid): Returns a reference to the `Account` `valid` field.
///
/// -[update_valid](Account::update_valid): Updates `valid` to the values it's supposed to have.
///
/// -[change_valid](Account::change_valid): Changes the `valid` to a the provided `Valid`
///
/// -[fix_valid](Account::fix_valid): Makes an invalid Account valid
///
///
/// # [Deep Functions](Account#deep-functions)
///
///
/// Deep Functions are versions of functions to interact with a child `Account`
/// of the parent `Account` that the function is called.
///
/// They accept an extra `Vec` of `&N` that are the list of child `Accounts`
/// you have to pass though to get to the child `Account` the function will be called.
/// For each value in the `Vec` the value to its right is its parent. Meaning that the right most value
/// is the a direct child of the `Account` we call the function on, and the left most is the the `Account`
/// we will interact with.
///
/// Deep functions can return [`DeepError`]'s
///
/// The main function is [deep](Account::deep) to get a reference to a child `Account`,
/// [deep_mut](Account::deep_mut) exists but it can make an Account [invalid](Account#valid)
/// so its recommend to use the `deep` version of methods instead
///  
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
#[must_use]
pub struct Account<N, K, V> {
    name: N,
    active: bool,
    #[cfg_attr(feature = "serde", serde(bound = "K: Eq + Hash"))]
    settings: HashMap<K, V>,
    accounts: Vec<Account<N, K, V>>,
    valid: Valid,
}

impl<N, K, V> Account<N, K, V> {
    /// Creates a new account without verifying its validity
    ///
    /// The is no [validity](Account#valid) check, so the account created can be an invalid account.
    /// Use [`new`](Account::new) to make sure that the account created is valid.
    ///
    /// It's recommend that the parent `Accounts` are made with [`new`](Account::new)
    /// but child `Accounts` are made with with `new_unchecked`.
    ///
    /// # Example
    /// ```
    /// use std::collections::HashMap;
    /// use hashmap_settings::account::*;
    /// let account = Account::new_unchecked(
    ///     "New Account".to_string(),
    ///     true,
    ///     HashMap::from([
    ///         ("answer".to_string(),42),
    ///         ("zero".to_string(),0),
    ///         ("big_number".to_string(),10000),
    ///     ]),
    ///     vec![
    ///         Account::new("1".to_string(), true, Default::default(), Default::default()),
    ///         Account::new("2".to_string(), true, Default::default(), Default::default()),
    ///         Account::new("3".to_string(), true, Default::default(), Default::default())
    ///     ],
    ///     Valid::new(true,true,true),
    /// );
    ///
    /// assert_eq!(account.name(), "New Account");
    /// assert!(account.active());
    /// assert!(account.hashmap() ==
    ///     &HashMap::from([
    ///         ("answer".to_string(),42),
    ///         ("zero".to_string(),0),
    ///         ("big_number".to_string(),10000)
    ///     ])
    /// );
    /// assert!(account.accounts() ==
    ///     &vec![
    ///         Account::new("1".to_string(), true, Default::default(), Default::default()),
    ///         Account::new("2".to_string(), true, Default::default(), Default::default()),
    ///         Account::new("3".to_string(), true, Default::default(), Default::default())
    ///     ],
    /// );
    /// assert!(account.valid() ==
    ///     &Valid::new(true,true,true)
    /// );
    ///
    /// ```
    pub const fn new_unchecked(
        name: N,
        active: bool,
        settings: HashMap<K, V>,
        accounts: Vec<Self>,
        valid: Valid,
    ) -> Self {
        Self {
            name,
            active,
            settings,
            accounts,
            valid,
        }
    }
    /// Returns the name of the `Account`
    ///
    /// # Examples
    ///
    /// ```
    /// use hashmap_settings::account::Account;
    /// let account = Account::<String,(),()>::new(
    ///     "New account".to_string(),
    ///     Default::default(),
    ///     Default::default(),
    ///     Default::default()
    /// );
    ///
    /// assert_eq!(account.name(), "New account");
    /// ```
    #[must_use]
    pub const fn name(&self) -> &N {
        &self.name
    }
    /// Return `true` if the `Account` is active
    ///
    /// When not active `Accounts` will be treated as if they were not there when called by some of the parent's `Account` methods.
    ///
    /// When creating an `Account` with [`Default`] active will be `true`.
    ///
    /// # Examples
    ///
    /// ```
    /// use hashmap_settings::account::Account;
    /// let mut account = Account::<String,(),()>::new(Default::default(), true, Default::default(), Default::default());
    ///
    /// assert!(account.active());
    /// account.change_activity(false);
    /// assert!(!account.active());
    ///
    /// ```
    #[must_use]
    pub const fn active(&self) -> bool {
        self.active
    }
    /// Takes a `bool` and changes the value of active, returns `true` if changes were made.
    ///
    /// # Examples
    ///
    /// ```
    /// use hashmap_settings::account::Account;
    /// let mut account = Account::<String,(),()>::new(Default::default(), false, Default::default(), Default::default());
    ///
    /// assert!(!account.active());
    /// assert_eq!(account.change_activity(true), true);
    /// assert!(account.active());
    /// assert_eq!(account.change_activity(true), false);
    /// assert!(account.active());
    ///
    /// ```
    pub const fn change_activity(&mut self, new_active: bool) -> bool {
        if self.active() == new_active {
            false
        } else {
            self.active = new_active;
            true
        }
    }
    /// Return a reference to the `HashMap`
    ///
    /// # Examples
    ///
    /// ```
    /// use hashmap_settings::account::Account;
    /// use std::collections::HashMap;
    /// let account = Account::<String,String,i32>::new(
    ///     "New Account".to_string(),
    ///     Default::default(),
    ///     HashMap::from([
    ///         ("answer".to_string(),42),
    ///         ("zero".to_string(),0),
    ///         ("big_number".to_string(),10000),
    ///     ]),
    ///     Default::default(),
    /// );
    ///
    /// assert!(account.hashmap() ==
    ///     &HashMap::from([
    ///         ("answer".to_string(),42),
    ///         ("zero".to_string(),0),
    ///         ("big_number".to_string(),10000),
    ///     ])
    /// );
    ///
    /// ```
    #[must_use]
    pub const fn hashmap(&self) -> &HashMap<K, V> {
        &self.settings
    }
    /// An iterator visiting all keys in arbitrary order.
    /// The iterator element type is `&'a K`.
    ///
    /// This method is a direct call to [`HashMap`]'s [`keys()`](HashMap::keys()).
    ///
    /// # Examples
    ///
    /// ```
    /// use hashmap_settings::account::Account;
    /// use std::collections::HashMap;
    /// let account = Account::<String,String,i32>::new(
    ///     Default::default(),
    ///     Default::default(),
    ///     HashMap::from([
    ///         ("answer".to_string(),42),
    ///         ("zero".to_string(),0),
    ///         ("big_number".to_string(),10000),
    ///     ]),
    ///     Default::default(),
    /// );
    ///
    /// for key in account.keys() {
    ///     println!("{key}");
    /// }
    /// ```
    ///
    /// # Performance
    ///
    /// In the current implementation, iterating over keys takes O(capacity) time
    /// instead of O(len) because it internally visits empty buckets too.
    #[must_use]
    pub fn keys(&self) -> hash_map::Keys<'_, K, V> {
        self.settings.keys()
    }
    /// Returns the number of elements the map can hold without reallocating.
    ///
    /// This number is a lower bound; the `HashMap<K, V>` might be able to hold
    /// more, but is guaranteed to be able to hold at least this many.
    ///
    /// This method is a direct call to [`HashMap`]'s [`keys()`](HashMap::keys()).
    ///
    /// # Examples
    ///
    /// ```
    /// use hashmap_settings::account::Account;
    /// use std::collections::HashMap;
    /// let account = Account::<String,(),()>::new(Default::default(), Default::default(), HashMap::with_capacity(100), Default::default());
    /// assert!(account.capacity() >= 100);
    /// ```
    #[must_use]
    pub fn capacity(&self) -> usize {
        self.settings.capacity()
    }
    /// Return a reference to the `Vec` of child `Accounts`
    ///
    /// # Examples
    ///
    /// ```
    /// use hashmap_settings::account::Account;
    /// let account = Account::<i32,(),()>::new(
    ///     0,
    ///     Default::default(),
    ///     Default::default(),
    ///     vec![
    ///         Account::new(1, true, Default::default(), Default::default()),
    ///         Account::new(2, true, Default::default(), Default::default()),
    ///         Account::new(3, true, Default::default(), Default::default())
    ///     ],
    /// );
    ///
    /// assert!(account.accounts() ==
    ///     &vec![
    ///         Account::new(1, true, Default::default(), Default::default()),
    ///         Account::new(2, true, Default::default(), Default::default()),
    ///         Account::new(3, true, Default::default(), Default::default())
    ///     ],
    /// );
    ///
    /// ```
    #[must_use]
    pub const fn accounts(&self) -> &Vec<Self> {
        &self.accounts
    }
    /// Return a `Vec` of names of the child `Accounts`
    ///
    /// # Examples
    ///
    /// ```
    /// use hashmap_settings::account::Account;
    /// let account = Account::<String,(),()>::new(
    ///     "New Account".to_string(),
    ///     Default::default(),
    ///     Default::default(),
    ///     vec![
    ///         Account::new("1".to_string(), true, Default::default(), Default::default()),
    ///         Account::new("2".to_string(), true, Default::default(), Default::default()),
    ///         Account::new("3".to_string(), true, Default::default(), Default::default())
    ///     ],
    /// );
    ///
    /// assert!(account.accounts_names() == vec!["1","2","3"]);
    ///
    /// ```
    #[must_use]
    pub fn accounts_names(&self) -> Vec<&N> {
        self.accounts.iter().map(Self::name).collect()
    }
    /// Returns the number of elements in the `Vec` of child `Accounts`,
    /// also referred to as its 'length'.
    ///
    /// This method is a direct call to [`Vec`]'s [`len()`](Vec::len()).
    ///
    /// # Examples
    ///
    /// ```
    /// use hashmap_settings::account::Account;
    /// let account = Account::<i32,(),()>::new(
    ///         Default::default(),
    ///         Default::default(),
    ///         Default::default(),
    ///         vec![
    ///             Account::new(1, Default::default(), Default::default(), Default::default()),
    ///             Account::new(2, Default::default(), Default::default(), Default::default()),
    ///             Account::new(3, Default::default(), Default::default(), Default::default())
    ///         ],
    ///     );
    /// assert_eq!(account.len(), 3);
    /// ```
    #[must_use]
    pub const fn len(&self) -> usize {
        self.accounts.len()
    }
    /// Returns `true` if the `Vec` of child `Accounts` contains no elements.
    ///
    /// This method is a direct call to [`Vec`]'s [`is_empty()`](Vec::is_empty()).
    ///
    /// # Examples
    ///
    /// ```
    /// use hashmap_settings::account::{Account,Valid};
    /// let mut account = Account::<String,(),()>::default();
    /// assert!(account.is_empty());
    ///
    /// account.push(Account::<String,(),()>::default(), Valid::new_true());
    /// assert!(!account.is_empty());
    /// ```
    #[must_use]
    pub const fn is_empty(&self) -> bool {
        self.accounts.is_empty()
    }
    /// Returns a mutable reference to a child `Account`
    ///  
    /// # Examples
    /// ```
    ///  //TODO(Example)
    /// ```
    #[must_use]
    pub fn get_mut_account(&mut self, index: usize) -> Option<&mut Self> {
        self.accounts.get_mut(index)
    }
    fn update_valid_children(&self) -> bool {
        for account in self.accounts() {
            if !account.valid.is_valid() {
                return false;
            }
        }
        true
    }
    /// Returns a reference to the `Account`'s [Valid].
    ///
    /// Check [valid](Account#valid)
    ///
    /// # Examples
    /// ```
    /// use hashmap_settings::account::{Account,Valid};
    /// let account = Account::<(),(),()>::default();
    /// assert_eq!(account.valid(),&Valid::new(true,true,true));
    /// ```
    pub const fn valid(&self) -> &Valid {
        &self.valid
    }
    /// Change `Account`'s [Valid] to the provided value.
    ///
    /// Returns `true` if new value is different than the previous one.
    ///
    /// This method (along with [update_valid](Account::update_valid)) is intended to be used with methods that
    /// can make an account [invalid](Account#valid) to correctly update they values for a future use of
    /// [fix_valid](Account::fix_valid).
    ///
    ///  `change_valid` can make an account [invalid](Account#valid) if improperly used.
    ///
    /// # Examples
    /// ```
    /// use hashmap_settings::account::{Account,Valid};
    /// let mut account = Account::<(),(),()>::default();
    /// assert_eq!(account.valid(),&Valid::new(true,true,true));
    /// assert_eq!(account.change_valid(Valid::new(true,true,true)),false);
    /// assert_eq!(account.change_valid(Valid::new(false,true,true)),true);
    /// assert_eq!(account.valid(),&Valid::new(false,true,true));
    /// ```
    pub fn change_valid(&mut self, new_valid: Valid) -> bool {
        new_valid != replace(&mut self.valid, new_valid)
    }
    /// Takes a `N` and updates the name of the `Account`.
    ///
    /// Returns the previous name that the Account had.
    ///
    /// # Examples
    ///
    /// ```
    /// use hashmap_settings::account::Account;
    /// let mut account = Account::<String,(),()>::new(
    ///     "Old Name".to_string(),
    ///     Default::default(),
    ///     Default::default(),
    ///     Default::default()
    /// );
    /// assert_eq!(account.name(), "Old Name");
    /// assert_eq!(account.rename("New Name".to_string()), "Old Name".to_string());
    /// assert_eq!(account.name(), "New Name");
    /// ```
    pub const fn rename(&mut self, new_name: N) -> N {
        core::mem::replace(&mut self.name, new_name)
    }
}
impl<N: Eq + Hash, K, V> Account<N, K, V> {
    fn update_valid_names(&self) -> bool {
        let accounts = self.accounts_names();
        let size = accounts.len();
        let mut hash_set = HashSet::with_capacity(size);
        for account in accounts {
            if !hash_set.insert(account) {
                return false;
            }
        }
        true
    }
}
impl<N: PartialEq, K, V> Account<N, K, V> {
    /// Returns a reference to a child `Account`.
    ///
    /// `deep` can be used with other methods that don't need a `&mut self` (like
    /// [get](Account::get) or [len](Account::len)) to use those methods on child `Account`s
    ///
    /// Part of the [deep functions](Account#deep-functions) group that accept a `Vec` of &N to identify
    /// the child `Account` to run the function.
    ///
    /// # Errors
    ///
    /// Deep functions can return [`DeepError`]'s
    ///
    /// # Examples
    ///
    /// ```
    /// use std::collections::HashMap;
    /// use hashmap_settings::account::Account;
    /// let account = Account::<String,String,i32>::new(
    ///     "Parent Account".to_string(),
    ///     Default::default(),
    ///     Default::default(),
    ///     vec![
    ///         Account::new("1".to_string(), true, Default::default(), Default::default()),
    ///         Account::new("2".to_string(), true, Default::default(), Default::default()),
    ///         Account::new("3".to_string(), true, Default::default(), vec![
    ///             Account::new("3_1".to_string(), true, Default::default(), Default::default()),
    ///             Account::new(
    ///                 "3_2".to_string(),
    ///                 true,
    ///                 HashMap::from([
    ///                     ("answer".to_string(),42),
    ///                     ("zero".to_string(),0),
    ///                     ("big_number".to_string(),10000),
    ///                 ]),
    ///                 Default::default()),
    ///             Account::new("3_3".to_string(), true, Default::default(), Default::default()),
    ///         ])
    ///     ],
    /// );
    ///
    /// assert_eq!(account.deep(&mut vec![&"3_2".to_string(),&"3".to_string()])?.get(&"answer".to_string()), Some(&42));
    /// # Ok::<(), hashmap_settings::account::DeepError>(())
    /// ```
    pub fn deep(&self, account_names: &mut Vec<&N>) -> Result<&Self, DeepError> {
        let Some(account_to_find) = account_names.pop() else {
            return Err(DeepError::EmptyVec); //error if the original call is empty, but this will create the base case in the recursive call
        };
        self.account_from_name(account_to_find)
            .map_or(
                Err(DeepError::NotFound),
                |found_account| match found_account.deep(account_names) {
                    //recursive call
                    Err(error) => match error {
                        DeepError::EmptyVec => Ok(found_account), //base case
                        DeepError::NotFound => Err(error),        //error/bad function call
                    },
                    Ok(value) => Ok(value),
                },
            )
    }
    /// Returns a mutable reference to a child `Account`.
    ///
    /// Consider using [`deep`](Account::deep) with methods that don't need a `&mut self`,
    /// or the respective [deep_function](Account#deep-functions) for a specific method as
    /// `deep_mut` can make an account [invalid](Account#valid)
    ///
    /// Part of the [deep functions](Account#deep-functions) group that accept a `Vec` of &N to identify
    /// the child `Account` to run the function.
    ///
    /// # Errors
    ///
    /// Deep functions can return [`DeepError`]'s
    ///
    /// # Examples
    ///
    /// ```
    /// use std::collections::HashMap;
    /// use hashmap_settings::account::Account;
    /// let mut account = Account::<String,String,i32>::new(
    ///     "Old Name".to_string(),
    ///     Default::default(),
    ///     Default::default(),
    ///     vec![
    ///         Account::new("1".to_string(), true, Default::default(), Default::default()),
    ///         Account::new("2".to_string(), true, Default::default(), Default::default()),
    ///         Account::new("3".to_string(), true, Default::default(), vec![
    ///             Account::new("3_1".to_string(), true, Default::default(), Default::default()),
    ///             Account::new(
    ///                 "3_2".to_string(),
    ///                 true,
    ///                 HashMap::from([
    ///                     ("answer".to_string(),42),
    ///                     ("zero".to_string(),0),
    ///                     ("big_number".to_string(),10000),
    ///                 ]),
    ///                 Default::default()),
    ///             Account::new("3_3".to_string(), true, Default::default(), Default::default()),
    ///         ])
    ///     ],
    /// );
    /// assert_eq!(account.deep_mut(&mut vec![&"3_2".to_string(),&"3".to_string()])?.insert("answer".to_string(), 777), Some(42));
    /// assert_eq!(account.deep(&mut vec![&"3_2".to_string(),&"3".to_string()])?.get(&"answer".to_string()), Some(&777));
    /// # Ok::<(), hashmap_settings::account::DeepError>(())
    /// ```
    pub fn deep_mut(&mut self, account_names: &mut Vec<&N>) -> Result<&mut Self, DeepError> {
        let Some(account_to_find) = account_names.pop() else {
            return Err(DeepError::EmptyVec); //error if the original call is empty, but this will create the base case in the recursive call
        };
        if let Some(found_account) = self.mut_account_from_name(account_to_find) {
            if account_names.is_empty() {
                //this and the unreachable()! have been added due to https://github.com/rust-lang/rust/issues/21906
                return Ok(found_account);
            }
            match found_account.deep_mut(account_names) {
                //recursive call
                Ok(value) => {
                    Ok(value) //returning the original value from the base case
                }
                Err(error) => match error {
                    DeepError::EmptyVec => {
                        unreachable!() //Ok(found_account)
                    } //base case
                    DeepError::NotFound => Err(error), //error/bad function call
                },
            }
        } else {
            Err(DeepError::NotFound)
        }
    }
    fn account_from_name(&self, name: &N) -> Option<&Self> {
        for account in 0..self.len() {
            if self.accounts[account].name() == name {
                return Some(&self.accounts[account]);
            }
        }
        None
    }
    fn mut_account_from_name(&mut self, name: &N) -> Option<&mut Self> {
        for account in 0..self.len() {
            if self.accounts[account].name() == name {
                return Some(&mut self.accounts[account]);
            }
        }
        None
    }
}
impl<N, K: Eq + Hash, V> Account<N, K, V> {
    /// Returns the value corresponding to the key.
    ///
    /// This method is a direct call to [`HashMap`]'s [`get()`](HashMap::get).
    ///
    /// # Examples
    ///
    /// ```
    /// use hashmap_settings::account::Account;
    /// let mut account: Account<(),&str,i32> = Default::default();
    /// account.insert("a small number", 42);
    /// assert_eq!(account.get(&"a small number"), Some(&42));
    /// assert_eq!(account.get(&"a big number"), None);
    /// ```
    #[must_use]
    #[allow(clippy::borrowed_box)]
    pub fn get(&self, setting_name: &K) -> Option<&V> {
        self.settings.get(setting_name)
    }
    /// Inserts a key-value pair into the map.
    ///
    /// If the map did not have this key present, `None` is returned.
    ///
    /// If the map did have this key present, the value is updated, and the old
    /// value is returned. The key is not updated, though; this matters for
    /// types that can be `==` without being identical. See the [module-level
    /// documentation] for more.
    ///
    /// [module-level documentation]: std::collections#insert-and-complex-keys
    ///
    /// This method is a direct call to [`HashMap`]'s [`insert()`](HashMap::insert()).
    ///
    /// # Examples
    ///
    /// ```
    /// use hashmap_settings::account::Account;
    /// let mut account: Account<(),&str,i32> = Default::default();
    /// assert_eq!(account.insert("a small number", 1), None);
    /// assert_eq!(account.hashmap().is_empty(), false);
    ///
    /// account.insert("a small number", 2);
    /// assert_eq!(account.insert("a small number", 3), Some(2));
    /// assert!(account.hashmap()[&"a small number"] == 3);
    /// ```
    pub fn insert(&mut self, setting_name: K, setting_value: V) -> Option<V> {
        self.settings.insert(setting_name, setting_value)
    }
    /// Removes a setting from the map, returning the value at the key if the key was previously in the map.
    ///
    /// This method is a direct call to [`HashMap`]'s [`remove()`](HashMap::remove).
    ///
    /// # Examples
    ///
    /// ```
    /// use hashmap_settings::account::Account;
    /// let mut account: Account<(),&str,i32> = Default::default();
    /// assert_eq!(account.insert("a small number", 1), None);
    /// assert_eq!(account.remove(&"a small number"), Some(1));
    /// assert_eq!(account.remove(&"a small number"), None);
    /// ```
    pub fn remove(&mut self, setting_to_remove: &K) -> Option<V> {
        self.settings.remove(setting_to_remove)
    }
    /// Returns `true` if the `Account` contains a value for the specified key.
    ///
    /// The key may be any borrowed form of the map’s key type, but [`Hash`] and [`PartialEq`] on the borrowed form must match those for the key type.
    ///
    /// This method is a direct call to [`HashMap`]'s [`contains_key()`](HashMap::contains_key()) .
    ///
    /// # Examples
    ///
    /// ```
    /// use hashmap_settings::account::Account;
    /// let mut account: Account<(),&str,i32> = Default::default();
    /// account.insert("a small number", 42);
    /// assert_eq!(account.contains_key(&"a small number"), true);
    /// assert_eq!(account.contains_key(&"a big number"), false);
    /// ```
    #[must_use]
    pub fn contains_key(&self, setting_name: &K) -> bool {
        self.settings.contains_key(setting_name)
    }
    fn get_in_sub_accounts(&self, setting: &K) -> Option<&V> {
        for account in (0..self.len()).rev() {
            if self.accounts[account].active
                && let Some(value) = self.accounts[account].settings.get(setting)
            {
                return Some(value);
            }
        }
        None
    }
}
impl<N, K: Eq + Hash, V: PartialEq> Account<N, K, V> {
    fn update_valid_settings(&self) -> bool {
        let mut hash_set = HashSet::new();
        for account in self.accounts() {
            if !account.valid.settings() {
                return false;
            }
            if account.active {
                for setting in account.keys() {
                    hash_set.insert(setting);
                }
            }
        }
        for setting in hash_set {
            if self.get_in_sub_accounts(setting) != self.get(setting) {
                return false;
            }
        }
        true
    }
}
impl<N, K: Clone + Eq + Hash, V: Clone> Account<N, K, V> {
    /// Updates a setting with the value its supposed to have.
    ///
    /// This function doesn't return anything, consider using [update_setting_returns](Account::update_setting_returns)
    /// if a return value is needed.
    ///
    /// Use [update_vec](Account::update_vec) if you want to update multiple settings.
    ///
    /// Use [update_all_settings](Account::update_all_settings) if you want to update all settings.
    ///
    /// If an Account is [valid](Account#valid) this wont do anything.
    ///
    /// # Examples
    /// ```
    ///  //TODO(Example)
    /// ```
    pub fn update_setting(&mut self, setting: &K) {
        for account in (0..self.len()).rev() {
            if self.accounts[account].active
                && let Some(value) = self.accounts[account].settings.get(setting)
            {
                self.settings.insert(setting.to_owned(), value.clone());
                return;
            }
        }
        self.settings.remove(setting);
    }
    /// Updates a group of settings with the value they are supposed to have.
    ///
    /// If an Account is [valid](Account#valid) this wont do anything.
    ///
    /// Use [update_setting](Account::update_setting) if you want to update a single setting.
    ///
    /// Use [update_all_settings](Account::update_all_settings) if you want to update all settings.
    ///
    /// # Examples
    /// ```
    ///  //TODO(Example)
    /// ```
    pub fn update_vec(&mut self, settings: &Vec<&K>) {
        'setting: for setting in settings {
            for account in (0..self.len()).rev() {
                if self.accounts[account].active
                    && let Some(value) = self.accounts[account].settings.get(*setting)
                {
                    self.settings.insert((*setting).to_owned(), value.clone());
                    continue 'setting;
                }
            }
            self.settings.remove(*setting);
        }
    }
    /// Updates all settings in the Account with the value they are supposed to have.
    ///
    /// If an Account is [valid](Account#valid) this wont do anything.
    ///
    /// Use [update_setting](Account::update_setting) if you want to update a single setting.
    ///
    /// Use [update_vec](Account::update_vec) if you want to update multiple but not all settings.
    ///
    /// # Examples
    /// ```
    ///  //TODO(Example)
    /// ```
    pub fn update_all_settings(&mut self) {
        let settings = self
            .settings
            .keys()
            .map(std::borrow::ToOwned::to_owned)
            .collect::<Vec<_>>();
        'setting: for setting in settings {
            for account in (0..self.len()).rev() {
                if self.accounts[account].active
                    && let Some(value) = self.accounts[account].settings.get(&setting.clone())
                {
                    self.settings.insert(setting.clone(), value.clone());
                    continue 'setting;
                }
            }
            self.settings.remove(&setting);
        }
    }
    fn fix_valid_settings(&mut self) {
        for account in &mut self.accounts {
            //fix child Accounts
            if !account.valid.settings {
                account.fix_valid_settings();
            }
        }
        let mut all_settings = HashSet::new();
        for account in self.accounts() {
            //get set off all settings
            if account.active {
                for setting in account.keys() {
                    all_settings.insert(setting.clone());
                }
            }
        }
        'setting: for setting in all_settings {
            //update settings on self account
            for account in (0..self.len()).rev() {
                if self.accounts[account].active
                    && let Some(value) = self.accounts[account].settings.get(&setting)
                {
                    self.settings.insert(setting, value.clone());
                    continue 'setting;
                }
            }
        }
        self.valid.settings = true;
    }
}
impl<N: Eq + Hash, K: Eq + Hash, V: PartialEq> Account<N, K, V> {
    /// Updates `valid` to the values it's supposed to have.
    ///
    /// This method takes a [Valid], updating the `Account`'s [Valid] accordingly.
    ///
    /// This method (along with [change_valid](Account::change_valid)) is intended to be used with methods that
    /// can make an account [invalid](Account#valid) to correctly update they values for a future use of
    /// [fix_valid](Account::fix_valid).
    ///  
    /// # Examples
    /// ```
    ///  //TODO(Example)
    /// ```
    pub fn update_valid(&mut self, valid: Valid) {
        if valid.names {
            self.valid.names = self.update_valid_names();
        }
        if valid.children {
            self.valid.children = self.update_valid_children();
        }
        if valid.settings {
            self.valid.settings = self.update_valid_settings();
        }
    }
}
impl<N: Clone + Eq + Hash + Incrementable, K, V> Account<N, K, V> {
    fn fix_valid_names(&mut self) {
        //todo!(performance needs to be improved)
        let size = self.accounts.len();
        let mut hash_set = HashSet::with_capacity(size);
        let mut vec_names: Vec<(N, usize)> = vec![];
        for account in 0..size {
            if !hash_set.insert(self.accounts[account].name.clone()) {
                vec_names.push((self.accounts[account].name.clone(), account));
            }
        }
        for name in &mut vec_names {
            name.0.increment_mut();
            'looping: loop {
                if hash_set.insert(name.0.clone()) {
                    self.accounts[name.1].name = name.0.clone();
                    break 'looping;
                }
                name.0.increment_mut();
            }
        }
        self.valid.names = true;
    }
}
impl<N: PartialEq, K: Clone + Eq + Hash, V: Clone> Account<N, K, V> {
    /// Takes a `bool` and changes the value of active of a child `Account`.
    ///
    /// Part of the [deep functions](Account#deep-functions) group that accept a `Vec` of &N to identify
    /// the child `Account` to run the function. [`change_activity`](Account::change_activity) in this case.
    ///
    /// Also updates the settings, contained on the updated account, in all the affected accounts such that they
    /// contain the correct values.
    ///
    /// # Errors
    ///
    /// Deep functions can return [`DeepError`]'s
    ///
    /// # Examples
    ///
    /// ```
    /// use hashmap_settings::account::Account;
    /// let mut account = Account::<String,(),()>::new(
    ///     "New Account".to_string(),
    ///     Default::default(),
    ///     Default::default(),
    ///     vec![
    ///         Account::new("1".to_string(), true, Default::default(), Default::default()),
    ///         Account::new("2".to_string(), true, Default::default(), Default::default()),
    ///         Account::new("3".to_string(), true, Default::default(), vec![
    ///             Account::new("3_1".to_string(), true, Default::default(), Default::default()),
    ///             Account::new("3_2".to_string(), true, Default::default(), Default::default()),
    ///             Account::new("3_3".to_string(), true, Default::default(), Default::default())
    ///         ])
    ///     ],
    /// );
    ///
    /// assert_eq!(account.deep_change_activity(false,&mut vec![&"3_2".to_string(),&"3".to_string()]), Ok(true));
    /// assert_eq!(account, Account::new(
    ///     "New Account".to_string(),
    ///     Default::default(),
    ///     Default::default(),
    ///     vec![
    ///         Account::new("1".to_string(), true, Default::default(), Default::default()),
    ///         Account::new("2".to_string(), true, Default::default(), Default::default()),
    ///         Account::new("3".to_string(), true, Default::default(), vec![
    ///             Account::new("3_1".to_string(), true, Default::default(), Default::default()),
    ///             Account::new("3_2".to_string(), false, Default::default(), Default::default()),
    ///             Account::new("3_3".to_string(), true, Default::default(), Default::default())
    ///         ])
    ///     ],
    /// ));
    /// ```
    pub fn deep_change_activity(
        &mut self,
        new_active: bool,
        account_names: &mut Vec<&N>,
    ) -> Result<bool, DeepError> {
        self.deep_change_activity_helper(new_active, account_names)
            .0
    }
    /// Inserts a key-value pair into the map of a child `Account`.
    ///
    /// This will updated the [settings](Account#settings) of all necessary Accounts
    /// so that the parent Account remains [valid](Account#valid)
    ///
    /// Part of the [deep functions](Account#deep-functions) group that accept a `Vec` of &N to identify
    /// the child `Account` to run the function. [`insert`](Account::insert) in this case.
    ///
    /// # Errors
    ///
    /// Deep functions can return [`DeepError`]'s
    ///
    /// # Examples
    ///
    /// ```
    /// use std::collections::HashMap;
    /// use hashmap_settings::account::Account;
    /// let mut account = Account::<String,String,i32>::new(
    ///     "Old Name".to_string(),
    ///     Default::default(),
    ///     Default::default(),
    ///     vec![
    ///         Account::new("1".to_string(), true, Default::default(), Default::default()),
    ///         Account::new("2".to_string(), true, Default::default(), Default::default()),
    ///         Account::new("3".to_string(), true, Default::default(), vec![
    ///             Account::new("3_1".to_string(), true, Default::default(), Default::default()),
    ///             Account::new(
    ///                 "3_2".to_string(),
    ///                 true,
    ///                 HashMap::from([
    ///                     ("answer".to_string(),42),
    ///                     ("zero".to_string(),0),
    ///                     ("big_number".to_string(),10000),
    ///                 ]),
    ///                 Default::default()),
    ///             Account::new("3_3".to_string(), true, Default::default(), Default::default()),
    ///         ])
    ///     ],
    /// );
    ///
    /// assert_eq!(account.deep_insert(&"answer".to_string(), 777, &mut vec![&"3_2".to_string(),&"3".to_string()]), Ok(Some(42)));
    /// assert_eq!(account.deep(&mut vec![&"3_2".to_string(),&"3".to_string()])?.get(&"answer".to_string()), Some(&777));
    /// # Ok::<(), hashmap_settings::account::DeepError>(())
    /// ```
    pub fn deep_insert(
        &mut self,
        setting_name: &K,
        setting_value: V,
        account_names: &mut Vec<&N>,
    ) -> Result<Option<V>, DeepError> {
        let Some(account_to_find) = account_names.pop() else {
            return Err(DeepError::EmptyVec); //error if the original call is empty, but this will create the base case in the recursive call
        };
        #[allow(clippy::option_if_let_else)]
        if let Some(found_account) = self.mut_account_from_name(account_to_find) {
            if account_names.is_empty() {
                //this and the unreachable()! have been added to prevent a .clone() on setting_value
                return Ok(found_account.insert(setting_name.to_owned(), setting_value));
            }
            match found_account.deep_insert(setting_name, setting_value, account_names) {
                //recursive call
                Ok(insert_option) => {
                    self.update_setting(setting_name);
                    //after the base this will be called in all previous function calls,
                    //updating the value in the corresponding Account.settings
                    Ok(insert_option) //returning the original value from the base case
                }
                Err(error) => match error {
                    DeepError::EmptyVec => {
                        unreachable!()
                    } //base case
                    DeepError::NotFound => Err(error), //error/bad function call
                },
            }
        } else {
            Err(DeepError::NotFound)
        }
    }
    /// Removes a setting from the map, returning the value at the key if the key was previously in the map.
    ///
    /// Part of the [deep functions](Account#deep-functions) group that accept a `Vec` of &N to identify
    /// the child `Account` to run the function. [`remove`](Account::remove) in this case.
    ///
    /// This method is a direct call to [`HashMap`]'s [`remove()`](HashMap::remove).
    ///
    /// # Errors
    ///
    /// Deep functions can return [`DeepError`]'s
    ///
    /// # Examples
    ///
    /// ```
    /// use std::collections::HashMap;
    /// use hashmap_settings::account::Account;
    /// let mut account = Account::<String,String,i32>::new(
    ///     "Old Name".to_string(),
    ///     Default::default(),
    ///     Default::default(),
    ///     vec![
    ///         Account::new("1".to_string(), true, Default::default(), Default::default()),
    ///         Account::new("2".to_string(), true, Default::default(), Default::default()),
    ///         Account::new("3".to_string(), true, Default::default(), vec![
    ///             Account::new("3_1".to_string(), true, Default::default(), Default::default()),
    ///             Account::new(
    ///                 "3_2".to_string(),
    ///                 true,
    ///                 HashMap::from([
    ///                     ("answer".to_string(),42),
    ///                     ("zero".to_string(),0),
    ///                     ("big_number".to_string(),10000),
    ///                 ]),
    ///                 Default::default()),
    ///             Account::new("3_3".to_string(), true, Default::default(), Default::default()),
    ///         ])
    ///     ],
    /// );
    ///
    /// assert_eq!(account.deep_remove(&"answer".to_string(),&mut vec![&"3_2".to_string(),&"3".to_string()]), Ok(Some(42)));
    /// assert_eq!(account.deep(&mut vec![&"3_2".to_string(),&"3".to_string()])?.get(&"int".to_string()), None);
    /// # Ok::<(), hashmap_settings::account::DeepError>(())
    /// ```
    pub fn deep_remove(
        &mut self,
        setting_to_remove: &K,
        account_names: &mut Vec<&N>,
    ) -> Result<Option<V>, DeepError> {
        let Some(account_to_find) = account_names.pop() else {
            return Err(DeepError::EmptyVec); //error if the original call is empty, but this will create the base case in the recursive call
        };
        #[allow(clippy::option_if_let_else)]
        if let Some(found_account) = self.mut_account_from_name(account_to_find) {
            match found_account.deep_remove(setting_to_remove, account_names) {
                //recursive call
                Ok(insert_option) => {
                    self.update_setting(setting_to_remove);
                    //after the base this will be called in all previous function calls,
                    //updating the value in the corresponding Account.settings
                    Ok(insert_option) //returning the original value from the base case
                }
                Err(error) => match error {
                    DeepError::EmptyVec => Ok(found_account.remove(setting_to_remove)), //base case
                    DeepError::NotFound => Err(error), //error/bad function call
                },
            }
        } else {
            Err(DeepError::NotFound)
        }
    }
    fn deep_change_activity_helper(
        &mut self,
        new_active: bool,
        account_names: &mut Vec<&N>,
    ) -> (Result<bool, DeepError>, Vec<K>) {
        let Some(account_to_find) = account_names.pop() else {
            return (Err(DeepError::EmptyVec), vec![]); //error if the original call is empty, but this will create the base case in the recursive call
        };
        #[allow(clippy::option_if_let_else)]
        if let Some(found_account) = self.mut_account_from_name(account_to_find) {
            match found_account.deep_change_activity_helper(new_active, account_names) {
                //recursive call
                (Ok(insert_option), settings) => {
                    self.update_vec(&settings.iter().collect());
                    //after the base this will be called in all previous function calls,
                    //updating the value in the corresponding Account.settings
                    (Ok(insert_option), settings) //returning the original value from the base case
                }
                (Err(error), _) => match error {
                    DeepError::EmptyVec => (
                        Ok(found_account.change_activity(new_active)),
                        found_account
                            .keys()
                            .map(std::borrow::ToOwned::to_owned)
                            .collect::<Vec<_>>(),
                    ), //base case
                    DeepError::NotFound => (Err(error), vec![]), //error/bad function call
                },
            }
        } else {
            (Err(DeepError::NotFound), vec![])
        }
    }
}
impl<N, K: Clone + Eq + Hash, V: Clone + PartialEq> Account<N, K, V> {
    /// Updates a setting with the value its supposed to have.
    ///
    /// Returns `None` if the setting isn't present in the Account or child Accounts.
    /// Returns `Some(true)` if the value of the setting was updated.
    /// Returns `Some(false)` if the value is in the Account but was not updated.
    ///
    /// if you don't need the return value use [update_setting](Account::update_setting) as it is faster
    ///
    /// If an Account is [valid](Account#valid) this method never returns Some(true)
    /// as this method is used to turn an invalid Account into a valid one.
    ///
    /// # Examples
    /// ```
    ///  //TODO(Example)
    /// ```
    #[must_use = "if return value isn't needed use update_setting() instead"]
    pub fn update_setting_returns(&mut self, setting: &K) -> Option<bool> {
        for account in (0..self.len()).rev() {
            if self.accounts[account].active
                && let Some(value) = self.accounts[account].settings.get(setting)
            {
                return Some(
                    !self
                        .settings
                        .insert(setting.to_owned(), value.clone())
                        .is_some_and(|x| &x == value),
                );
            }
        }
        self.settings.remove(setting).map(|_| true)
    }
}
impl<N: Clone + Eq + Hash + Incrementable + PartialEq, K, V> Account<N, K, V> {
    /// Takes a `&N` and updates the name of a child `Account`.
    ///
    /// This can make a Account [invalid](Account#valid) if the child Account
    /// got renamed to the same name as one of it's siblings.
    ///
    /// Part of the [deep functions](Account#deep-functions) group that accept a `Vec` of &N to identify
    /// the child `Account` to run the function. [`rename`](Account::rename) in this case.
    ///
    /// # Errors
    ///
    /// Deep functions can return [`DeepError`]'s
    ///
    /// # Examples
    ///
    /// ```
    /// use hashmap_settings::account::Account;
    /// let mut account = Account::<String,(),()>::new(
    ///     "Old Name".to_string(),
    ///     Default::default(),
    ///     Default::default(),
    ///     vec![
    ///         Account::new("1".to_string(), true, Default::default(), Default::default()),
    ///         Account::new("2".to_string(), true, Default::default(), Default::default()),
    ///         Account::new("3".to_string(), true, Default::default(), vec![
    ///             Account::new("3_1".to_string(), true, Default::default(), Default::default()),
    ///             Account::new("3_2".to_string(), true, Default::default(), Default::default()),
    ///             Account::new("3_3".to_string(), true, Default::default(), Default::default())
    ///         ])
    ///     ],
    /// );
    ///
    /// assert_eq!(account.deep_rename(&"Cool Name".to_string(),&mut vec![&"3_2".to_string(),&"3".to_string()]), Ok("3_2".to_string()));
    /// assert_eq!(account, Account::new(
    ///     "Old Name".to_string(),
    ///     Default::default(),
    ///     Default::default(),
    ///     vec![
    ///         Account::new("1".to_string(), true, Default::default(), Default::default()),
    ///         Account::new("2".to_string(), true, Default::default(), Default::default()),
    ///         Account::new("3".to_string(), true, Default::default(), vec![
    ///             Account::new("3_1".to_string(), true, Default::default(), Default::default()),
    ///             Account::new("Cool Name".to_string(), true, Default::default(), Default::default()),
    ///             Account::new("3_3".to_string(), true, Default::default(), Default::default())
    ///         ])
    ///     ],
    /// ));
    /// ```
    pub fn deep_rename(
        &mut self,
        new_name: &N,
        account_names: &mut Vec<&N>,
    ) -> Result<N, DeepError> {
        let Some(account_to_find) = account_names.pop() else {
            return Err(DeepError::EmptyVec); //error if the original call is empty, but this will create the base case in the recursive call
        };
        #[allow(clippy::option_if_let_else)]
        if let Some(found_account) = self.mut_account_from_name(account_to_find) {
            match found_account.deep_rename(new_name, account_names) {
                //recursive call
                Ok(insert_option) => {
                    Ok(insert_option) //returning the original value from the base case
                }
                Err(error) => match error {
                    DeepError::EmptyVec => {
                        let n = found_account.rename(new_name.clone());
                        self.fix_valid_names();
                        Ok(n)
                    } //base case
                    DeepError::NotFound => Err(error), //error/bad function call
                },
            }
        } else {
            Err(DeepError::NotFound)
        }
    }
}
impl<N: Eq + Hash, K: Clone + Eq + Hash, V: Clone + PartialEq> Account<N, K, V> {
    /// Removes the last element from the [`Vec`] of child `Account`s and returns it, or [`None`] if it is empty.
    ///
    /// Depending on the [Valid] provided it could make the parent `Account` [invalid](Account#valid).
    /// Providing a `Valid::new_true()` will always result in a valid `Account` so it is recommended.
    ///
    /// This method contains a call to [`Vec`]'s [`pop()`](Vec::pop()).
    ///
    /// # Examples
    ///
    /// ```
    /// use hashmap_settings::account::{Account,Valid};
    /// let mut account = Account::<i32,(),()>::new(
    ///     Default::default(),
    ///     Default::default(),
    ///     Default::default(),
    ///     vec![
    ///         Account::new(1, Default::default(), Default::default(), Default::default()),
    ///         Account::new(2, Default::default(), Default::default(), Default::default()),
    ///         Account::new(3, Default::default(), Default::default(), Default::default())
    ///     ],
    /// );
    /// assert_eq!(account.pop(Valid::new_true()), Some(Account::new(3, Default::default(), Default::default(), Default::default())));
    /// assert!(account ==
    ///     Account::<i32,(),()>::new(
    ///         Default::default(),
    ///         Default::default(),
    ///         Default::default(),
    ///         vec![
    ///             Account::new(1, Default::default(), Default::default(), Default::default()),
    ///             Account::new(2, Default::default(), Default::default(), Default::default())
    ///         ],
    ///     )
    /// )
    /// ```
    pub fn pop(&mut self, valid: Valid) -> Option<Self> {
        let popped_account = self.accounts.pop()?;
        if !self.valid.names && valid.names {
            self.valid.names = self.update_valid_names();
        }
        if !self.valid.children && valid.children {
            self.valid.children = self.update_valid_children();
        }
        if !self.valid.settings && valid.settings && popped_account.active {
            self.update_vec(&popped_account.keys().collect());
            self.valid.settings = self.update_valid_settings();
        }
        Some(popped_account)
    }
    /// Removes the last element from the [`Vec`] of child `Account`s, from a child `Account,`and returns it, or [`None`] if it is empty.
    ///
    /// Depending on the [Valid] provided it could make the parent `Account` [invalid](Account#valid).
    /// Providing a `Valid::new_true()` will always result in a valid `Account` so it is recommended.
    ///
    /// Part of the [deep functions](Account#deep-functions) group that accept a `Vec` of &N to identify
    /// the child `Account` to run the function. [`pop`](Account::pop) in this case.
    ///
    /// # Errors
    ///
    /// Deep functions can return [`DeepError`]'s
    ///
    /// # Examples
    ///
    /// ```
    /// use hashmap_settings::account::{Account,Valid};
    /// let mut account = Account::<String,(),()>::new(
    ///     "Old Name".to_string(),
    ///     Default::default(),
    ///     Default::default(),
    ///     vec![
    ///         Account::new("1".to_string(), true, Default::default(), Default::default()),
    ///         Account::new("2".to_string(), true, Default::default(), Default::default()),
    ///         Account::new("3".to_string(), true, Default::default(), vec![
    ///             Account::new("3_1".to_string(), true, Default::default(), Default::default()),
    ///             Account::new("3_2".to_string(), true, Default::default(), vec![
    ///                     Account::new("3_2.1".to_string(), true, Default::default(), Default::default()),
    ///                 ]),
    ///             Account::new("3_3".to_string(), true, Default::default(), Default::default()),
    ///         ])
    ///     ],
    /// );
    ///
    /// assert_eq!(account.deep_pop(Valid::new_true(), &mut vec![&"3_2".to_string(),&"3".to_string()])
    ///     ,Ok(Some(Account::new("3_2.1".to_string(), true, Default::default(), Default::default())))
    /// );
    ///
    ///
    /// assert_eq!(account ,
    ///     Account::<String,(),()>::new(
    ///         "Old Name".to_string(),
    ///         Default::default(),
    ///         Default::default(),
    ///         vec![
    ///             Account::new("1".to_string(), true, Default::default(), Default::default()),
    ///             Account::new("2".to_string(), true, Default::default(), Default::default()),
    ///             Account::new("3".to_string(), true, Default::default(), vec![
    ///                 Account::new("3_1".to_string(), true, Default::default(), Default::default()),
    ///                 Account::new("3_2".to_string(), true, Default::default(), Default::default()),
    ///                 Account::new("3_3".to_string(), true, Default::default(), Default::default()),
    ///             ])
    ///         ],
    ///     )
    /// );
    ///
    ///
    /// # Ok::<(), hashmap_settings::account::DeepError>(())
    /// ```
    pub fn deep_pop(
        &mut self,
        valid: Valid,
        account_names: &mut Vec<&N>,
    ) -> Result<Option<Self>, DeepError> {
        let Some(account_to_find) = account_names.pop() else {
            return Err(DeepError::EmptyVec); //error if the original call is empty, but this will create the base case in the recursive call
        };
        #[allow(clippy::option_if_let_else)]
        if let Some(found_account) = self.mut_account_from_name(account_to_find) {
            match found_account.deep_pop(valid, account_names) {
                //recursive call
                Ok(popped_account) => {
                    Ok(match popped_account {
                        None => None,
                        Some(account) => {
                            if account.active {
                                self.update_vec(&account.keys().collect());
                            }
                            Some(account)
                        }
                    })
                    //returning the original value from the base case
                }
                Err(error) => match error {
                    DeepError::EmptyVec => Ok(found_account.pop(valid)), //base case
                    DeepError::NotFound => Err(error),                   //error/bad function call
                },
            }
        } else {
            Err(DeepError::NotFound)
        }
    }
}
impl<N: Clone + Eq + Hash + Incrementable, K: Clone + Eq + Hash, V: Clone + PartialEq>
    Account<N, K, V>
{
    /// Creates a new [valid](Account#valid) account
    ///
    /// This lets you create an `Account` that is sure to be fully valid
    /// including it's child `Accounts` or an error is returned.
    ///
    /// It's recommend that parent `Accounts` are made with `new_valid` but child
    /// `Accounts` are made with with [new](Account::new) to avoid repeated validity checks.
    ///
    /// # Examples
    ///
    /// ```
    /// use hashmap_settings::account::Account;
    /// let account = Account::<String,(),()>::new(
    ///     "New Account".to_string(),
    ///     Default::default(),
    ///     Default::default(),
    ///     vec![
    ///         Account::new("1".to_string(), true, Default::default(), Default::default()),
    ///         Account::new("2".to_string(), true, Default::default(), Default::default()),
    ///         Account::new("3".to_string(), true, Default::default(), Default::default())
    ///     ],
    /// );
    /// assert_eq!(account, Account::<String,(),()>::new(
    ///     "New Account".to_string(),
    ///     Default::default(),
    ///     Default::default(),
    ///     vec![
    ///         Account::new("1".to_string(), true, Default::default(), Default::default()),
    ///         Account::new("2".to_string(), true, Default::default(), Default::default()),
    ///         Account::new("3".to_string(), true, Default::default(), Default::default())
    ///     ],
    /// ));
    pub fn new(name: N, active: bool, settings: HashMap<K, V>, accounts: Vec<Self>) -> Self {
        let mut new_account = Self {
            name,
            active,
            settings,
            accounts,
            valid: Valid::new_false(),
        };
        new_account.fix_valid(Valid::new_true());
        new_account
    }
    /// Makes an invalid `Account` valid
    ///
    /// This method fixes the `Account` according to the specified [`Valid`] `Account` to make it [valid](Account#valid)
    ///
    /// This method is called by [new](Account::new) when an Account is created.
    ///
    /// # Examples
    /// ```
    ///  //TODO(Example)
    /// ```
    pub fn fix_valid(&mut self, valid: Valid) {
        if self.valid.is_valid() && valid.is_valid() {
            return;
        }
        if !self.valid.children && valid.children {
            self.fix_valid_children();
        }
        if !self.valid.names && valid.names {
            self.fix_valid_names();
        }
        if !self.valid.settings && valid.settings {
            self.fix_valid_settings();
        }
    }

    fn fix_valid_children(&mut self) {
        for account in 0..self.len() {
            if !self.accounts[account].valid.is_valid() {
                self.accounts[account].fix_valid(Valid::default());
            }
        }
        self.valid.children = true;
    }
}
impl<N: Clone + Eq + Hash + Incrementable + PartialEq, K: Clone + Eq + Hash, V: Clone + PartialEq>
    Account<N, K, V>
{
    /// Appends an `Account` to the back of the `Vec` of child `Accounts`.
    ///
    /// This child `Account` settings will be added to the settings of the main `Account` that `push` was called on.
    ///
    /// If the inserted Account is [inactive](Account::active) the new settings won't be updated.
    ///
    /// Depending on the [Valid] provided it could make the parent `Account` [invalid](Account#valid).
    /// Providing a `Valid::new_true()` will always result in a valid `Account` so it is recommended.
    ///
    /// # Panics
    ///
    /// Panics if the new capacity exceeds `isize::MAX` bytes.
    ///
    /// # Examples
    ///
    /// ```
    /// use hashmap_settings::account::{Account,Valid};
    /// let mut account = Account::<i32,(),()>::new(
    ///     Default::default(),
    ///     Default::default(),
    ///     Default::default(),
    ///     vec![
    ///         Account::new(1, Default::default(), Default::default(), Default::default()),
    ///         Account::new(2, Default::default(), Default::default(), Default::default())
    ///     ],
    /// );
    /// account.push(Account::new(3, Default::default(), Default::default(), Default::default()), Valid::new_true());
    /// assert!(account ==
    ///     Account::new(
    ///         Default::default(),
    ///         Default::default(),
    ///         Default::default(),
    ///         vec![
    ///             Account::new(1, Default::default(), Default::default(), Default::default()),
    ///             Account::new(2, Default::default(), Default::default(), Default::default()),
    ///             Account::new(3, Default::default(), Default::default(), Default::default())
    ///         ],
    ///     )
    /// );
    /// ```
    pub fn push(&mut self, account: Self, valid: Valid) {
        if self.valid.children && valid.children && !account.valid.is_valid() {
            self.fix_valid(Valid::new(false, false, true));
        }
        if self.valid.settings && valid.settings && !account.valid.is_valid() {
            self.fix_valid(Valid::new(false, true, false));
        }
        if account.active {
            for setting in account.settings.keys() {
                self.insert(setting.to_owned(), account.get(setting).unwrap().clone());
            }
        }
        if self.valid.names && valid.names && self.accounts_names().contains(&&account.name) {
            self.accounts.push(account);
            self.fix_valid(Valid::new(true, false, false));
        } else {
            self.accounts.push(account);
        }
    }
    /// Appends an `Account` to the back of the `Vec` of child `Accounts` of a child `Account`.
    ///
    /// This will updated the [settings](Account#settings) of all necessary Accounts
    /// so that the parent Account remains [valid](Account#valid)
    ///
    /// Part of the [deep functions](Account#deep-functions) group that accept a `Vec` of &N to identify
    /// the child `Account` to run the function. [`push`](Account::push) in this case.
    ///
    /// Depending on the [Valid] provided it could make the parent `Account` [invalid](Account#valid).
    /// Providing a `Valid::new_true()` will always result in a valid `Account` so it is recommended.
    ///
    /// # Errors
    ///
    /// Deep functions can return [`DeepError`]'s
    ///
    /// # Examples
    ///
    /// ```
    /// use hashmap_settings::account::{Account,Valid};
    /// let mut account = Account::<String,(),()>::new(
    ///     "Old Name".to_string(),
    ///     Default::default(),
    ///     Default::default(),
    ///     vec![
    ///         Account::new("1".to_string(), true, Default::default(), Default::default()),
    ///         Account::new("2".to_string(), true, Default::default(), Default::default()),
    ///         Account::new("3".to_string(), true, Default::default(), vec![
    ///             Account::new("3_1".to_string(), true, Default::default(), Default::default()),
    ///             Account::new("3_2".to_string(), true, Default::default(), Default::default()),
    ///             Account::new("3_3".to_string(), true, Default::default(), Default::default()),
    ///         ])
    ///     ],
    /// );
    ///
    /// assert_eq!(account.deep_push(
    ///     Account::new("3_2.1".to_string(), true, Default::default(), Default::default()),
    ///     Valid::new_true(),
    ///     &mut vec![&"3_2".to_string(),&"3".to_string()])
    /// , None);
    ///
    ///
    /// assert_eq!(account ,
    ///     Account::<String,(),()>::new(
    ///         "Old Name".to_string(),
    ///         Default::default(),
    ///         Default::default(),
    ///         vec![
    ///             Account::new("1".to_string(), true, Default::default(), Default::default()),
    ///             Account::new("2".to_string(), true, Default::default(), Default::default()),
    ///             Account::new("3".to_string(), true, Default::default(), vec![
    ///                 Account::new("3_1".to_string(), true, Default::default(), Default::default()),
    ///                 Account::new("3_2".to_string(), true, Default::default(), vec![
    ///                     Account::new("3_2.1".to_string(), true, Default::default(), Default::default()),
    ///                 ]),
    ///                 Account::new("3_3".to_string(), true, Default::default(), Default::default()),
    ///             ])
    ///         ],
    ///     )
    /// );
    ///
    ///
    /// # Ok::<(), hashmap_settings::account::DeepError>(())
    /// ```
    pub fn deep_push(
        &mut self,
        account: Self,
        valid: Valid,
        account_names: &mut Vec<&N>,
    ) -> Option<DeepError> {
        self.deep_push_helper(account, valid, account_names).err()
    }
    fn deep_push_helper(
        &mut self,
        account: Self,
        valid: Valid,
        account_names: &mut Vec<&N>,
    ) -> Result<Vec<K>, DeepError> {
        let Some(account_to_find) = account_names.pop() else {
            return Err(DeepError::EmptyVec); //error if the original call is empty, but this will create the base case in the recursive call
        };
        #[allow(clippy::option_if_let_else)]
        if let Some(found_account) = self.mut_account_from_name(account_to_find) {
            if account_names.is_empty() {
                //this and the unreachable()! have been added due to https://github.com/rust-lang/rust/issues/21906
                let is_active = account.active;
                found_account.push(account, valid);
                return Ok(if is_active {
                    found_account.accounts[found_account.len() - 1]
                        .keys()
                        .map(std::borrow::ToOwned::to_owned)
                        .collect::<Vec<_>>()
                } else {
                    vec![]
                });
            }
            match found_account.deep_push_helper(account, valid, account_names) {
                //recursive call
                Ok(keys) => {
                    self.update_vec(&keys.iter().collect());
                    Ok(keys) //returning the original value from the base case
                }
                Err(error) => match error {
                    DeepError::EmptyVec => {
                        unreachable!() //Ok(found_account)
                    } //base case
                    DeepError::NotFound => Err(error), //error/bad function call
                },
            }
        } else {
            Err(DeepError::NotFound)
        }
    }
}

impl<N: Default, K, V> Default for Account<N, K, V> {
    fn default() -> Self {
        Self {
            name: N::default(),
            active: true,
            settings: HashMap::default(),
            accounts: Vec::default(),
            valid: Valid::default(),
        }
    }
}
impl<N: Clone, K: Clone, V: Clone> Clone for Account<N, K, V> {
    fn clone(&self) -> Self {
        Self {
            name: self.name.clone(),
            active: self.active,
            settings: self.settings.clone(),
            accounts: self.accounts.clone(),
            valid: self.valid,
        }
    }
}
impl<N: Debug, K: Debug, V: Debug> Debug for Account<N, K, V> {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        f.debug_struct("Account")
            .field("name", &self.name)
            .field("active", &self.active)
            .field("settings", &self.settings)
            .field("accounts", &self.accounts)
            .field("valid", &self.valid)
            .finish()
    }
}
impl<N: PartialEq, K: Eq + Hash, V: PartialEq> PartialEq for Account<N, K, V> {
    fn eq(&self, other: &Self) -> bool {
        self.name == other.name
            && self.active == other.active
            && self.settings == other.settings
            && self.accounts == other.accounts
            && self.valid == other.valid
    }
}

#[cfg(feature = "serde")]
#[cfg_attr(feature = "serde", typetag::serialize)]
impl<
    N: Setting + Clone + Debug + PartialEq + Serialize + for<'a> Deserialize<'a>,
    K: Setting + Clone + Debug + Eq + Hash + Serialize + for<'a> Deserialize<'a>,
    V: Setting + Clone + Debug + PartialEq + Serialize + for<'a> Deserialize<'a>,
> Setting for Account<N, K, V>
{
    fn typetag_deserialize(&self) {
        //todo!(figure what this is supposed to do as its not mut, and returns "()")
    }
}

#[cfg(not(feature = "serde"))]
impl<
    N: Setting + Clone + Debug + PartialEq,
    K: Setting + Clone + Debug + Eq + Hash,
    V: Setting + Clone + Debug + PartialEq,
> Setting for Account<N, K, V>
{
}

/// `Account`'s validity tracker
///
/// [`Account`] contains a valid field of type `Valid` that tracks if an [`Account`] is [valid](Account#valid).
///
/// `Valid` contains 3 `bool` fields corresponding to the 3 ways an account can be invalid:
///
/// names: An `Account` is invalid if it's children `Accounts` have duplicated names.
///
/// settings: An `Account` is invalid if it doesn't contain all settings present in it's children `Accounts`.
///
/// accounts: An `Account` is invalid if it's children `Accounts` are themselves invalid.
///
///
/// `Valid` is also used in certain methods in `Account` that interact with it's `valid` field.
///
/// A `Valid::default()` `Valid::new_true()` and `Valid::new(true, true, true)` are equivalent.
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
#[derive(Clone, Copy, Debug, Eq, Hash, PartialEq)]
#[must_use]
pub struct Valid {
    names: bool,
    settings: bool,
    children: bool,
}
impl Valid {
    /// Creates a new `Valid`
    ///
    /// # Examples
    /// ```
    /// use hashmap_settings::account::Valid;
    ///
    /// let _valid = Valid::new(true,true,true);
    /// ```
    pub const fn new(names: bool, settings: bool, children: bool) -> Self {
        Self {
            names,
            settings,
            children,
        }
    }
    /// Creates a new `Valid` where all fields are `true`.
    ///
    /// # Examples
    /// ```
    /// use hashmap_settings::account::Valid;
    ///
    /// let valid = Valid::new_true();
    /// assert_eq!(valid,Valid::new(true,true,true));
    /// ```
    pub const fn new_true() -> Self {
        Self {
            names: true,
            settings: true,
            children: true,
        }
    }
    /// Creates a new `Valid` where all fields are `false`.
    ///
    /// # Examples
    /// ```
    /// use hashmap_settings::account::Valid;
    ///
    /// let valid = Valid::new_false();
    /// assert_eq!(valid,Valid::new(false,false,false));
    /// ```
    pub const fn new_false() -> Self {
        Self {
            names: false,
            settings: false,
            children: false,
        }
    }
    /// Returns `true` if all fields are `true`.
    ///
    /// # Examples
    /// ```
    /// use hashmap_settings::account::Valid;
    ///
    /// let valid = Valid::new(true,true,true);
    /// assert!(valid.is_valid());
    /// let invalid = Valid::new(false,true,true);
    /// assert!(!invalid.is_valid());
    /// ```
    #[must_use]
    pub const fn is_valid(&self) -> bool {
        self.children && self.settings && self.names
    }
    /// Returns the value of the field `names`
    ///
    /// # Examples
    /// ```
    /// use hashmap_settings::account::Valid;
    ///
    /// let valid1 = Valid::new(true,true,true);
    /// assert!(valid1.names());
    /// let valid2 = Valid::new(false,true,true);
    /// assert!(!valid2.names());
    /// ```
    #[must_use]
    pub const fn names(&self) -> bool {
        self.names
    }
    /// Returns the value of the field `settings`
    ///
    /// # Examples
    /// ```
    /// use hashmap_settings::account::Valid;
    ///
    /// let valid1 = Valid::new(true,true,true);
    /// assert!(valid1.settings());
    /// let valid2 = Valid::new(true,false,true);
    /// assert!(!valid2.settings());
    /// ```
    #[must_use]
    pub const fn settings(&self) -> bool {
        self.settings
    }
    /// Returns the value of the field `children`
    ///
    /// # Examples
    /// ```
    /// use hashmap_settings::account::Valid;
    ///
    /// let valid1 = Valid::new(true,true,true);
    /// assert!(valid1.children());
    /// let valid2 = Valid::new(true,true,false);
    /// assert!(!valid2.children());
    /// ```
    #[must_use]
    pub const fn children(&self) -> bool {
        self.children
    }
}
impl Default for Valid {
    fn default() -> Self {
        Self {
            names: true,
            settings: true,
            children: true,
        }
    }
}

/// Trait for types that can be incremented.
///
/// This method is necessary for types that will be used as a name for [`Account`] as it is used
/// to change an `Account's` name in case of duplication.
///
/// For types that have a limited set of names such as i32, if there are more `Accounts` than the max number
/// of names (2^32 for i32) it will cause an infinite loop in certain `Account`'s methods.
///
///
/// Implementations for `Incrementable` are under the feature "incrementable" that is
/// activated by default.
///
/// The feature should be turned off in the case a different implementation than the provided is desired.
///
///
/// # Examples
///
/// ```
/// use hashmap_settings::account::Incrementable;
///
/// let mut number = 13_i32;
/// number.increment_mut();
/// assert_eq!(number, 14);
/// ```
pub trait Incrementable {
    /// return the incremented value
    ///
    /// # Examples
    ///  ```
    /// use hashmap_settings::account::Incrementable;
    ///
    /// let number = 13_i32;
    /// assert_eq!(number.increment(), 14);
    /// assert_eq!(number, 13);
    /// ```
    #[must_use]
    fn increment(&self) -> Self;
    /// increments self
    ///
    /// # Examples
    ///  ```
    /// use hashmap_settings::account::Incrementable;
    ///
    /// let mut number = 13_i32;
    /// number.increment_mut();
    /// assert_eq!(number, 14);
    /// ```
    fn increment_mut(&mut self);
}

/// Errors involving [Deep Functions](Account#deep-functions)
#[derive(Debug, PartialEq, Eq)]
pub enum DeepError {
    /// Error of providing a name of a [child](Account#accounts) Account that doesn't exist
    NotFound,
    /// Error of providing a empty `Vec` to a deep function
    EmptyVec,
}