destination 0.1.2

A library providing types and method for managing physical addresses in a municipality.
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
//! The `address` module defines the library data standard for a valid address, and provides
//! implementation blocks to convert data from import types to the valid address format.
use crate::{
    AddressError, AddressErrorKind, AddressMatch, AddressStatus, Builder, Cartesian, Decode,
    FireInspections, Geographic, IntoBin, IntoCsv, Io, LexisNexis, Mismatch, Parse,
    PostalCommunity, State, StreetNamePostType, StreetNamePreDirectional, StreetNamePreModifier,
    StreetNamePreType, StreetSeparator, SubaddressType, from_bin, from_csv, to_bin, to_csv,
};
use derive_more::{Deref, DerefMut};
use indicatif::ProgressBar;
use nom::bytes::complete::tag;
use serde::{Deserialize, Serialize};
use std::collections::HashSet;
use std::ops;
use tracing::{error, info, trace};

/// The `Address` trait enables the data to function as well-formed address.  The methods of the
/// trait define values for constituent components of an address.  The address components follow
/// the FGDC classification.
pub trait Address {
    /// The `number` method returns the address number component.
    fn number(&self) -> i64;
    /// The `number_mut` method returns a mutable reference to the address number component.
    fn number_mut(&mut self) -> &mut i64;
    /// The `number_suffix` method returns the address number suffix component.
    fn number_suffix(&self) -> &Option<String>;
    /// The `number_suffix_mut` method returns a mutable reference to the address number suffix component.
    fn number_suffix_mut(&mut self) -> &mut Option<String>;
    /// The `directional` method returns the [`StreetNamePreDirectional`] component, if any.
    fn directional(&self) -> &Option<StreetNamePreDirectional>;
    /// The `directional` method returns a mutable reference to the [`StreetNamePreDirectional`] value.
    fn directional_mut(&mut self) -> &mut Option<StreetNamePreDirectional>;
    /// The `street_name_pre_modifier` method returns the street name pre modifier component.
    fn street_name_pre_modifier(&self) -> &Option<StreetNamePreModifier>;
    /// The `street_name_pre_modifier_mut` method returns a mutable reference to the street name pre modifier component.
    fn street_name_pre_modifier_mut(&mut self) -> &mut Option<StreetNamePreModifier>;
    /// The `street_name_pre_type` method returns the street name pre type component.
    fn street_name_pre_type(&self) -> &Option<StreetNamePreType>;
    /// The `street_name_pre_type_mut` method returns a mutable reference to the street name pre type component.
    fn street_name_pre_type_mut(&mut self) -> &mut Option<StreetNamePreType>;
    /// The `street_name_separator` method returns the separator element component.
    fn street_name_separator(&self) -> &Option<StreetSeparator>;
    /// The `street_name_separator_mut` method returns a mutable reference to the separator element component.
    fn street_name_separator_mut(&mut self) -> &mut Option<StreetSeparator>;
    /// The `street_name` method returns the street name component.
    fn street_name(&self) -> &String;
    /// The `street_name_mut` method returns a mutable reference to the street name component.
    fn street_name_mut(&mut self) -> &mut String;
    /// The `street_type` method returns the street name post type component.
    fn street_type(&self) -> &Option<StreetNamePostType>;
    /// The `street_type_mut` method returns a mutable reference to the street name post type component.
    fn street_type_mut(&mut self) -> &mut Option<StreetNamePostType>;
    /// The `subaddress_id` method returns the subaddress identifier component, if any.
    fn subaddress_id(&self) -> &Option<String>;
    /// The `subaddress_id_mut` method returns a mutable reference to the vale of the subaddress identifier component.
    fn subaddress_id_mut(&mut self) -> &mut Option<String>;
    /// The `subaddress_type` method returns the subaddress type component, if any.
    fn subaddress_type(&self) -> &Option<SubaddressType>;
    /// The `subaddress_type_mut` method returns a mutable reference to the value of the subaddress type component.
    fn subaddress_type_mut(&mut self) -> &mut Option<SubaddressType>;
    /// The `floor` method returns the floor identifier corresponding to the `Floor` field in the
    /// NENA standard, required for emergency response.
    fn floor(&self) -> &Option<i64>;
    /// The `floor_mut` method returns a mutable reference to the value of the floor identifier.
    fn floor_mut(&mut self) -> &mut Option<i64>;
    /// The `building` method returns the building identifier corresponing to the `Building` field
    /// in the NENA standard, required for emergency response.
    fn building(&self) -> &Option<String>;
    /// The `building_mut` method returns a mutable reference to the value of the building
    /// identifier.
    fn building_mut(&mut self) -> &mut Option<String>;
    /// The `zip` method returns the zip code component of the address.
    fn zip(&self) -> i64;
    /// The `zip_mut` method returns a mutable reference to the value of the zip code component.
    fn zip_mut(&mut self) -> &mut i64;
    /// The `postal_community` method returns the postal community component of the address, being
    /// the unincorporated or incorporated municipality name.
    fn postal_community(&self) -> &String;
    /// The `postal_community_mut` method returns a mutable reference to the value of the postal
    /// community component.
    fn postal_community_mut(&mut self) -> &mut String;
    /// The `state` method returns the state name component of the address.
    fn state(&self) -> &State;
    /// The `state_mut` method returns a mutable reference to the value of the state name
    /// component.
    fn state_mut(&mut self) -> &mut State;
    /// The `status` method returns the local status of the address, as determined by the
    /// relevant address authority.
    fn status(&self) -> &AddressStatus;
    /// The `status_mut` method returns a mutable reference to the value of the address status.
    fn status_mut(&mut self) -> &mut AddressStatus;

    /// An address is coincident when the `other` address refers to the same assignment or
    /// location.  If the addresses are coincident, but details (such as the floor number or
    /// address status) differ, then the differences are recorded as a vector of type [`Mismatch`].
    /// The results are converted to type [`AddressMatch`].
    #[tracing::instrument(skip_all)]
    fn coincident<T: Address>(&self, other: &T) -> AddressMatch {
        let mut coincident = false;
        let mut mismatches = Vec::new();
        if self.number() == other.number()
            && self.number_suffix() == other.number_suffix()
            && self.directional() == other.directional()
            && self.street_name_pre_modifier() == other.street_name_pre_modifier()
            && self.street_name_pre_type() == other.street_name_pre_type()
            && self.street_name_separator() == other.street_name_separator()
            && self.street_name() == other.street_name()
            && self.street_type() == other.street_type()
            && self.subaddress_id() == other.subaddress_id()
            && self.zip() == other.zip()
            && self.postal_community() == other.postal_community()
            && self.state() == other.state()
        {
            coincident = true;
            if self.subaddress_type() != other.subaddress_type() {
                mismatches.push(Mismatch::subaddress_type(
                    *self.subaddress_type(),
                    *other.subaddress_type(),
                ));
            }
            if self.floor() != other.floor() {
                mismatches.push(Mismatch::floor(*self.floor(), *other.floor()));
            }
            if self.building() != other.building() {
                mismatches.push(Mismatch::building(
                    self.building().clone(),
                    other.building().clone(),
                ));
            }
            if self.status() != other.status() {
                mismatches.push(Mismatch::status(*self.status(), *other.status()));
            }
        }
        AddressMatch::new(coincident, mismatches)
    }

    /// Returns a String representing the address label, consisting of the complete address number,
    /// complete street name and complete subaddress, used to produce map or mailing labels.
    #[tracing::instrument(skip_all)]
    fn label(&self) -> String {
        let complete_address_number = match &self.number_suffix() {
            Some(suffix) => format!("{} {}", self.number(), suffix),
            None => self.number().to_string(),
        };

        let complete_street_name = self.complete_street_name(true);
        tracing::trace!("Street name: {complete_street_name}");

        let accessory = self.building().as_ref().map(|v| format!("BLDG {v}"));

        let complete_subaddress = match &self.subaddress_id() {
            Some(identifier) => match self.subaddress_type() {
                Some(subaddress_type) => {
                    Some(format!("{} {}", subaddress_type.abbreviate(), identifier))
                }
                None => Some(format!("#{}", identifier)),
            },
            None => self
                .subaddress_type()
                .map(|subaddress_type| subaddress_type.abbreviate()),
        };

        match complete_subaddress {
            Some(subaddress) => format!(
                "{} {} {}",
                complete_address_number, complete_street_name, subaddress
            ),
            None => match accessory {
                Some(value) => format!(
                    "{} {} {}",
                    complete_address_number, complete_street_name, value
                ),
                None => format!("{} {}", complete_address_number, complete_street_name),
            },
        }
    }

    /// The `complete_street_name` method returns the complete street name of the address.
    #[tracing::instrument(skip_all)]
    fn complete_street_name(&self, abbreviate: bool) -> String {
        let mut name = String::new();
        if let Some(directional) = self.directional() {
            if abbreviate {
                if let Some(dir) = &self.directional_abbreviated() {
                    name.push_str(dir);
                }
            } else {
                name.push_str(&directional.to_string());
            }
            name.push(' ');
        }
        if let Some(modifier) = self.street_name_pre_modifier() {
            name.push_str(modifier.upper().as_str());
            name.push(' ');
        }
        if let Some(pre_type) = self.street_name_pre_type() {
            name.push_str(pre_type.upper().as_str());
            name.push(' ');
        }
        if let Some(separator) = self.street_name_separator() {
            name.push_str(separator.upper().as_str());
            name.push(' ');
        }
        name.push_str(&self.street_name().to_string());
        if let Some(post_type) = self.street_type() {
            tracing::trace!("Post type found: {post_type}");
            name.push(' ');
            if abbreviate {
                tracing::trace!("Abbreviated: {}", post_type.abbreviate());
                name.push_str(&post_type.abbreviate());
            } else {
                name.push_str(&post_type.to_string());
            }
        } else {
            tracing::warn!("Post type not found for {name}.");
        }
        name
    }

    /// The `common_street_name` method returns the street name, including any premodifier, pretype
    /// and separator elements.
    ///
    /// The purpose of this method is to yield values like "UPPER RIVER" as the street name instead
    /// of "RIVER", used in the [`LexisNexis::from_addresses`] method.
    #[tracing::instrument(skip_all)]
    fn common_street_name(&self) -> String {
        let mut name = String::new();
        if let Some(modifier) = self.street_name_pre_modifier() {
            name.push_str(modifier.upper().as_str());
            name.push(' ');
        }
        if let Some(pre_type) = self.street_name_pre_type() {
            name.push_str(pre_type.upper().as_str());
            name.push(' ');
        }
        if let Some(separator) = self.street_name_separator() {
            name.push_str(separator.upper().as_str());
            name.push(' ');
        }
        name.push_str(&self.street_name().to_string());
        name
    }

    /// The `complete_address_number` method returns the address number and address number suffix,
    /// if any, as a String.
    #[tracing::instrument(skip_all)]
    fn complete_address_number(&self) -> String {
        match self.number_suffix() {
            Some(suf) => format!("{} {}", self.number(), suf),
            None => self.number().to_string(),
        }
    }

    /// The `pre_directional` field represents the street name predirectional component of the
    /// complete street name.  This function returns the cloned value of the field.
    #[tracing::instrument(skip_all)]
    fn directional_abbreviated(&self) -> Option<String> {
        match self.directional() {
            Some(StreetNamePreDirectional::NORTH) => Some("N".to_string()),
            Some(StreetNamePreDirectional::EAST) => Some("E".to_string()),
            Some(StreetNamePreDirectional::SOUTH) => Some("S".to_string()),
            Some(StreetNamePreDirectional::WEST) => Some("W".to_string()),
            Some(StreetNamePreDirectional::NORTHEAST) => Some("NE".to_string()),
            Some(StreetNamePreDirectional::NORTHWEST) => Some("NW".to_string()),
            Some(StreetNamePreDirectional::SOUTHEAST) => Some("SE".to_string()),
            Some(StreetNamePreDirectional::SOUTHWEST) => Some("SW".to_string()),
            None => None,
        }
    }

    /// The `standardize` method takes county address naming conventions and converts them to city
    /// naming conventions.
    #[tracing::instrument(skip_all)]
    fn standardize(&mut self) {
        let comp = self.street_name().clone();
        if comp == "AZALEA DRIVE" {
            trace!("Fixing Azalea Drive Cutoff");
            *self.street_name_mut() = "AZALEA".to_string();
            *self.street_type_mut() = Some(StreetNamePostType::DriveCutoff);
        }

        if let Some(sub) = self.subaddress_id() {
            if comp == "LEWIS" && sub == "OFFICE" {
                info!("Fixing Lewis Ave Office");
                *self.subaddress_id_mut() = None;
                *self.subaddress_type_mut() = Some(SubaddressType::Office);
            }
        }
        if comp == "BEAVILLA VIEW" {
            trace!("Fixing Beavilla View");
            *self.street_name_mut() = "BEAVILLA".to_string();
            *self.street_type_mut() = Some(StreetNamePostType::VIEW);
        }
        if comp == "COLUMBIA CREST" {
            trace!("Fixing Columbia Crest");
            *self.street_name_mut() = "COLUMBIA".to_string();
            *self.street_type_mut() = Some(StreetNamePostType::CREST);
        }
        if comp == "HILLTOP VIEW" {
            trace!("Fixing Hilltop View");
            *self.street_name_mut() = "HILLTOP".to_string();
            *self.street_type_mut() = Some(StreetNamePostType::VIEW);
        }
        if comp == "TENNESSEE VIEW" {
            trace!("Fixing Tennessee View");
            *self.street_name_mut() = "TENNESSEE".to_string();
            *self.street_type_mut() = Some(StreetNamePostType::VIEW);
        }
        if comp == "MARILEE ROW" {
            trace!("Fixing Marilee Row");
            *self.street_name_mut() = "MARILEE".to_string();
            *self.street_type_mut() = Some(StreetNamePostType::ROW);
        }
        if comp == "MEADOW GLEN" {
            trace!("Fixing Meadow Glen");
            *self.street_name_mut() = "MEADOW".to_string();
            *self.street_type_mut() = Some(StreetNamePostType::GLEN);
        }
        if comp == "GENVERNA GLEN" {
            trace!("Fixing Genverna Glen");
            *self.street_name_mut() = "GENVERNA".to_string();
            *self.street_type_mut() = Some(StreetNamePostType::GLEN);
        }
        if comp == "ROBERTSON CREST" {
            trace!("Fixing Robertson Crest");
            *self.street_name_mut() = "ROBERTSON".to_string();
            *self.street_type_mut() = Some(StreetNamePostType::CREST);
        }
        if comp == "QUAIL CROSSING" {
            trace!("Fixing Quail Crossing");
            *self.street_name_mut() = "QUAIL".to_string();
            *self.street_type_mut() = Some(StreetNamePostType::CROSSING);
        }
        if comp == "SIDE ROAD" && *self.directional() == Some(StreetNamePreDirectional::WEST) {
            trace!("Fixing West Side Road");
            *self.directional_mut() = None;
            *self.street_name_mut() = "WEST SIDE".to_string();
        }
        if comp == "SOUTH SHORE DRIVE"
            && *self.directional() == Some(StreetNamePreDirectional::SOUTH)
        {
            trace!("Fixing South Shore Drive");
            *self.directional_mut() = None;
            *self.street_name_mut() = "SOUTH SHORE".to_string();
        }

        if let Some(comp) = self.subaddress_id().clone() {
            trace!("Fixing Laundry");
            if comp == "LAUNDRY" {
                *self.subaddress_id_mut() = None;
                *self.subaddress_type_mut() = Some(SubaddressType::Laundry);
            }
            trace!("Fixing Office");
            if comp == "OFFICE" {
                *self.subaddress_id_mut() = None;
                *self.subaddress_type_mut() = Some(SubaddressType::Office);
            }
            trace!("Fixing Rec");
            if comp == "REC" {
                *self.subaddress_id_mut() = None;
                *self.subaddress_type_mut() = Some(SubaddressType::Rec);
            }
            trace!("Fixing Trailer");
            if comp == "TRLR" {
                *self.subaddress_id_mut() = None;
                *self.subaddress_type_mut() = Some(SubaddressType::Trailer);
            }
            trace!("Fixing Floor 4");
            if comp == "FLOOR 4" {
                *self.subaddress_id_mut() = Some("4".to_string());
                *self.subaddress_type_mut() = Some(SubaddressType::Floor);
            }
            if comp.contains("APT") {
                let (_, id) =
                    tag::<&str, &str, nom::error::Error<_>>("APT")(comp.as_str()).unwrap();
                *self.subaddress_id_mut() = Some(id.to_string());
            }
            if comp.contains("RV") {
                let (_, id) = tag::<&str, &str, nom::error::Error<_>>("RV")(comp.as_str()).unwrap();
                *self.subaddress_id_mut() = Some(id.to_string());
            }
            if comp.contains("CABIN") {
                let (_, id) =
                    tag::<&str, &str, nom::error::Error<_>>("CABIN")(comp.as_str()).unwrap();
                *self.subaddress_id_mut() = Some(id.to_string());
            }
        }
    }
}

/// The `Addresses` trait enables methods that act on vectors of type [`Address`].
pub trait Addresses<T: Address + Clone + Send + Sync>
where
    Self: ops::Deref<Target = Vec<T>> + ops::DerefMut<Target = Vec<T>> + Clone,
{
    /// The `filter` method returns the subset of addresses that match the filter.  Current values
    /// include "duplicate", which retains addresses that contain a duplicate in the set.
    #[tracing::instrument(skip_all)]
    fn filter(&self, filter: &str) -> Vec<T> {
        let mut records = Vec::new();
        // let values = self.values();
        match filter {
            "duplicate" => {
                let style = indicatif::ProgressStyle::with_template(
            "[{elapsed_precise}] {bar:40.cyan/blue} {pos:>7}/{len:7} {'Checking for duplicate addresses.'}",
        )
        .unwrap();
                let mut seen = HashSet::new();
                let bar = ProgressBar::new(self.len() as u64);
                bar.set_style(style);
                for address in self.iter() {
                    let label = address.label();
                    if !seen.contains(&label) {
                        seen.insert(label.clone());
                        let mut same = self.clone();
                        same.filter_field("label", &label);
                        if same.len() > 1 {
                            records.append(&mut same);
                        }
                    }
                    bar.inc(1);
                }
            }
            _ => error!("Invalid filter provided."),
        }
        records
    }

    /// The `filter_field` method returns the subset of addresses where the field `filter` is equal
    /// to the value in `field`.
    #[tracing::instrument(skip_all)]
    fn filter_field(&mut self, filter: &str, field: &str) {
        match filter {
            "active" => self.retain(|r| r.status() != &AddressStatus::Retired),
            "label" => self.retain(|r| r.label() == field),
            "street_name" => self.retain(|r| r.street_name() == field),
            "common_street_name" => self.retain(|r| r.common_street_name() == field),
            "complete_street_name" => self.retain(|r| r.complete_street_name(false) == field),
            "complete_street_name_abbr" => self.retain(|r| r.complete_street_name(true) == field),
            "pre_directional" => {
                info!("Directional is {}", field);
                if let Ok((_, dir)) = Parse::pre_directional(field) {
                    info!("Parsed directional: {:?}", &dir);
                    self.retain(|r| r.directional() == &dir)
                } else {
                    tracing::info!("Could not parse pre directional.")
                }
            }
            "post_type" => {
                if let Ok((_, post)) = Parse::post_type(field) {
                    self.retain(|r| r.street_type() == &post)
                } else {
                    tracing::info!("Could not parse post type.")
                }
            }
            "status" => self.retain(|r| r.status().to_string() == field),
            _ => info!("Invalid filter provided."),
        }
    }

    /// Compares the complete street name of an address to the value in `street`, returning true if
    /// equal.
    #[tracing::instrument(skip_all)]
    fn contains_street(&self, street: &String) -> bool {
        let mut contains = false;
        for address in self.iter() {
            let comp_street = address.complete_street_name(false);
            if &comp_street == street {
                contains = true;
            }
        }
        contains
    }

    /// The `orphan_streets` method returns the list of complete street names that are contained in
    /// self but are not present in `other`.
    #[tracing::instrument(skip_all)]
    fn orphan_streets<V: Address + Clone + Send + Sync, U: Addresses<V>>(
        &self,
        other: &U,
    ) -> Vec<String> {
        let mut seen = HashSet::new();
        let mut orphans = Vec::new();
        for address in self.iter() {
            let street = address.complete_street_name(false);
            if !seen.contains(&street) {
                seen.insert(street.clone());
                if !other.contains_street(&street) {
                    orphans.push(street);
                }
            }
        }
        orphans
    }

    /// The `citify` method takes county address naming conventions and converts them to city
    /// naming conventions.
    #[tracing::instrument(skip_all)]
    fn citify(&mut self) {
        trace!("Running Citify");
        for address in self.iter_mut() {
            let comp_street = address.complete_street_name(false);
            if comp_street == "NE BEAVILLA VIEW" {
                trace!("Fixing Beavilla View");
                *address.street_name_mut() = "BEAVILLA".to_string();
                *address.street_type_mut() = Some(StreetNamePostType::VIEW);
            }
            if comp_street == "COLUMBIA CREST" {
                trace!("Fixing Columbia Crest");
                *address.street_name_mut() = "COLUMBIA".to_string();
                *address.street_type_mut() = Some(StreetNamePostType::CREST);
            }
            if comp_street == "SE FORMOSA GARDENS" {
                trace!("Fixing Formosa Gardens");
                *address.street_name_mut() = "FORMOSA".to_string();
                *address.street_type_mut() = Some(StreetNamePostType::GARDENS);
            }
            if comp_street == "SE HILLTOP VIEW" {
                trace!("Fixing Hilltop View");
                *address.street_name_mut() = "HILLTOP".to_string();
                *address.street_type_mut() = Some(StreetNamePostType::VIEW);
            }
            if comp_street == "MARILEE ROW" {
                trace!("Fixing Marilee Row");
                *address.street_name_mut() = "MARILEE".to_string();
                *address.street_type_mut() = Some(StreetNamePostType::ROW);
            }
            if comp_street == "MEADOW GLEN" {
                trace!("Fixing Meadow Glen");
                *address.street_name_mut() = "MEADOW".to_string();
                *address.street_type_mut() = Some(StreetNamePostType::GLEN);
            }
            if comp_street == "ROBERTSON CREST" {
                trace!("Fixing Robertson Crest");
                *address.street_name_mut() = "ROBERTSON".to_string();
                *address.street_type_mut() = Some(StreetNamePostType::CREST);
            }
            if comp_street == "NE QUAIL CROSSING" {
                trace!("Fixing Quail Crossing");
                *address.street_name_mut() = "QUAIL".to_string();
                *address.street_type_mut() = Some(StreetNamePostType::CROSSING);
            }
        }
    }

    /// The `LexisNexis` method produces the LexisNexis table showing dispatch jurisdiction for
    /// address ranges within the City of Grants Pass.
    #[tracing::instrument(skip_all)]
    fn lexis_nexis(&self, other: &Self) -> Result<LexisNexis, Builder> {
        LexisNexis::from_addresses(self, other)
    }

    /// The `standardize` method takes county address naming conventions and converts them to city
    /// naming conventions.
    #[tracing::instrument(skip_all)]
    fn standardize(&mut self) {
        trace!("Running standardize");
        self.iter_mut().map(|v| v.standardize()).for_each(drop);
    }
}

/// The `CommonAddress` struct defines the fields of a valid address, following the FGDC standard,
/// with the inclusion of NENA-required fields for emergency response.
#[derive(
    Debug,
    Default,
    Clone,
    PartialEq,
    Eq,
    PartialOrd,
    Ord,
    Hash,
    serde::Serialize,
    serde::Deserialize,
)]
pub struct CommonAddress {
    /// The `number` field represents the address number component of the complete address
    /// number.
    pub number: i64,
    /// The `number_suffix` field represents the address number suffix component of the complete
    /// address number.
    pub number_suffix: Option<String>,
    /// The `directional` field represents the street name pre directional component of the
    /// complete street name.
    pub directional: Option<StreetNamePreDirectional>,
    /// The `pre_modifier` field represents the street name pre modifier component of the complete
    /// street name.
    pub pre_modifier: Option<StreetNamePreModifier>,
    /// The `pre_type` field represents the street name pre type component of the complete street
    /// name.
    pub pre_type: Option<StreetNamePreType>,
    /// The `separator` field represents the separator element component of the complete street
    /// name.
    pub separator: Option<StreetSeparator>,
    /// The `street_name` field represents the street name component of the complete street name.
    pub street_name: String,
    /// The `street_type` field represents the street name post type component of the complete street
    /// name.
    pub street_type: Option<StreetNamePostType>,
    /// The `subaddress_type` field represents the subaddress type component of the complete
    /// subaddress.
    pub subaddress_type: Option<SubaddressType>,
    /// The `subaddress_id` field represents the subaddress identifier component of the complete
    /// subaddress.
    pub subaddress_id: Option<String>,
    /// The `floor` field represents the floor identifier, corresponding to the `Floor` field from the NENA standard.
    pub floor: Option<i64>,
    /// The `building` field represents the building identifier, corresponding to the `Building` field from the NENA standard.
    pub building: Option<String>,
    /// The `zip` field represents the postal zip code of the address.
    pub zip: i64,
    /// The `postal_community` field represents the postal community component of the address,
    /// being either the unincorporated or incorporated municipality name.
    pub postal_community: String,
    /// The `state` field represents the state name component of the address.
    pub state: State,
    /// The `status` field represents the local status of the address as determined by the relevant
    /// addressing authority.
    pub status: AddressStatus,
}

impl Address for CommonAddress {
    fn number(&self) -> i64 {
        self.number
    }

    fn number_mut(&mut self) -> &mut i64 {
        &mut self.number
    }

    fn number_suffix(&self) -> &Option<String> {
        &self.number_suffix
    }

    fn number_suffix_mut(&mut self) -> &mut Option<String> {
        &mut self.number_suffix
    }

    fn directional(&self) -> &Option<StreetNamePreDirectional> {
        &self.directional
    }

    fn directional_mut(&mut self) -> &mut Option<StreetNamePreDirectional> {
        &mut self.directional
    }

    fn street_name_pre_modifier(&self) -> &Option<StreetNamePreModifier> {
        &self.pre_modifier
    }

    fn street_name_pre_modifier_mut(&mut self) -> &mut Option<StreetNamePreModifier> {
        &mut self.pre_modifier
    }

    fn street_name_pre_type(&self) -> &Option<StreetNamePreType> {
        &self.pre_type
    }

    fn street_name_pre_type_mut(&mut self) -> &mut Option<StreetNamePreType> {
        &mut self.pre_type
    }

    fn street_name_separator(&self) -> &Option<StreetSeparator> {
        &self.separator
    }

    fn street_name_separator_mut(&mut self) -> &mut Option<StreetSeparator> {
        &mut self.separator
    }

    fn street_name(&self) -> &String {
        &self.street_name
    }

    fn street_name_mut(&mut self) -> &mut String {
        &mut self.street_name
    }

    fn street_type(&self) -> &Option<StreetNamePostType> {
        &self.street_type
    }

    fn street_type_mut(&mut self) -> &mut Option<StreetNamePostType> {
        &mut self.street_type
    }

    fn subaddress_id(&self) -> &Option<String> {
        &self.subaddress_id
    }

    fn subaddress_id_mut(&mut self) -> &mut Option<String> {
        &mut self.subaddress_id
    }

    fn subaddress_type(&self) -> &Option<SubaddressType> {
        &self.subaddress_type
    }

    fn subaddress_type_mut(&mut self) -> &mut Option<SubaddressType> {
        &mut self.subaddress_type
    }

    fn floor(&self) -> &Option<i64> {
        &self.floor
    }

    fn floor_mut(&mut self) -> &mut Option<i64> {
        &mut self.floor
    }

    fn building(&self) -> &Option<String> {
        &self.building
    }

    fn building_mut(&mut self) -> &mut Option<String> {
        &mut self.building
    }

    fn zip(&self) -> i64 {
        self.zip
    }

    fn zip_mut(&mut self) -> &mut i64 {
        &mut self.zip
    }

    fn postal_community(&self) -> &String {
        &self.postal_community
    }

    fn postal_community_mut(&mut self) -> &mut String {
        &mut self.postal_community
    }

    fn state(&self) -> &State {
        &self.state
    }

    fn state_mut(&mut self) -> &mut State {
        &mut self.state
    }

    fn status(&self) -> &AddressStatus {
        &self.status
    }

    fn status_mut(&mut self) -> &mut AddressStatus {
        &mut self.status
    }
}

impl<T: Address> From<&T> for CommonAddress {
    fn from(address: &T) -> Self {
        let number = address.number();
        let number_suffix = address.number_suffix().clone();
        let directional = *address.directional();
        let pre_modifier = *address.street_name_pre_modifier();
        let pre_type = *address.street_name_pre_type();
        let separator = *address.street_name_separator();
        let street_name = address.street_name().clone();
        let street_type = *address.street_type();
        let subaddress_type = *address.subaddress_type();
        let subaddress_id = address.subaddress_id().clone();
        let floor = *address.floor();
        let building = address.building().clone();
        let zip = address.zip();
        let postal_community = address.postal_community().clone();
        let state = *address.state();
        let status = *address.status();
        Self {
            number,
            number_suffix,
            directional,
            pre_modifier,
            pre_type,
            separator,
            street_name,
            street_type,
            subaddress_type,
            subaddress_id,
            floor,
            building,
            zip,
            postal_community,
            state,
            status,
        }
    }
}

/// The `CommonAddresses` struct holds a vector of type [`CommonAddress`].
#[derive(
    Debug,
    Default,
    Clone,
    PartialEq,
    Eq,
    PartialOrd,
    Ord,
    Hash,
    serde::Serialize,
    serde::Deserialize,
    derive_new::new,
    derive_more::Deref,
    derive_more::DerefMut,
)]
pub struct CommonAddresses(Vec<CommonAddress>);

impl Addresses<CommonAddress> for CommonAddresses {}

impl<T: Address + Clone> From<&[T]> for CommonAddresses {
    fn from(addresses: &[T]) -> Self {
        let records = addresses
            .iter()
            .map(CommonAddress::from)
            .collect::<Vec<CommonAddress>>();
        Self(records)
    }
}

impl IntoBin<CommonAddresses> for CommonAddresses {
    fn load<P: AsRef<std::path::Path>>(path: P) -> Result<Self, AddressError> {
        let config = bincode::config::standard();
        match from_bin(path) {
            Ok(records) => {
                let (result, _) = bincode::serde::decode_from_slice::<
                    Self,
                    bincode::config::Configuration,
                >(&records, config)
                .map_err(|source| Decode::new(source, line!(), file!().into()))?;
                Ok(result)
            }
            Err(source) => Err(AddressErrorKind::from(source).into()),
        }
    }

    fn save<P: AsRef<std::path::Path>>(&self, path: P) -> Result<(), AddressError> {
        to_bin(self, path)
    }
}

impl IntoCsv<CommonAddresses> for CommonAddresses {
    fn from_csv<P: AsRef<std::path::Path>>(path: P) -> Result<Self, Io> {
        let records = from_csv(path)?;
        Ok(Self(records))
    }

    fn to_csv<P: AsRef<std::path::Path>>(&mut self, path: P) -> Result<(), AddressErrorKind> {
        to_csv(&mut self.0, path.as_ref().into())
    }
}

/// The `PartialAddress` struct contains optional fields so that incomplete or missing data can be
/// compared against [`Addresses`] or [`PartialAddresses`] for potential matches.  Used to help
/// match address information that does not parse into a full valid address.
#[derive(
    Debug,
    Clone,
    Default,
    PartialEq,
    Eq,
    PartialOrd,
    Ord,
    Hash,
    serde::Serialize,
    serde::Deserialize,
)]
pub struct PartialAddress {
    /// The `address_number` field represents the address number component of the complete address
    /// number.
    pub address_number: Option<i64>,
    /// The `number_suffix` field represents the address number suffix component of the complete
    /// address number.
    pub address_number_suffix: Option<String>,
    /// The `directional` field represents the street name pre directional component of the
    /// complete street name.
    pub street_name_pre_directional: Option<StreetNamePreDirectional>,
    /// The `pre_modifier` field represents the street name pre modifier component of the complete
    /// street name.
    pub pre_modifier: Option<StreetNamePreModifier>,
    /// The `pre_type` field represents the street name pre type component of the complete street
    /// name.
    pub pre_type: Option<StreetNamePreType>,
    /// The `separator` field represents the separator element component of the complete street
    /// name.
    pub separator: Option<StreetSeparator>,
    /// The `street_name` field represents the street name component of the complete street name.
    pub street_name: Option<String>,
    /// The `street_type` field represents the street name post type component of the complete street
    /// name.
    pub street_name_post_type: Option<StreetNamePostType>,
    /// The `subaddress_type` field represents the subaddress type component of the complete
    /// subaddress.
    pub subaddress_type: Option<SubaddressType>,
    /// The `subaddress_id` field represents the subaddress identifier component of the complete
    /// subaddress.
    pub subaddress_identifier: Option<String>,
    /// The `floor` field represents the floor identifier, corresponding to the `Floor` field from the NENA standard.
    pub floor: Option<i64>,
    /// The `building` field represents the building identifier, corresponding to the `Building` field from the NENA standard.
    pub building: Option<String>,
    /// The `zip` field represents the postal zip code of the address.
    pub zip_code: Option<i64>,
    /// The `postal_community` field represents the postal community component of the address,
    /// being either the unincorporated or incorporated municipality name.
    pub postal_community: Option<PostalCommunity>,
    /// The `state` field represents the state name component of the address.
    pub state_name: Option<State>,
    /// The `status` field represents the local status of the address as determined by the relevant
    /// addressing authority.
    pub status: Option<AddressStatus>,
}

impl PartialAddress {
    /// Creates an empty new `PartialAddress` with all fields set to None.
    pub fn new() -> Self {
        PartialAddress::default()
    }

    /// The `address_number` field represents the address number component of the complete address
    /// number.  This function returns the value of the field.
    pub fn address_number(&self) -> Option<i64> {
        self.address_number
    }

    /// The `address_number_suffix` field represents the address number suffix component of the
    /// complete address number.  This function returns the cloned value of the field.
    pub fn address_number_suffix(&self) -> Option<String> {
        self.address_number_suffix.clone()
    }

    /// The `street_name_pre_directional` field represents the street name predirectional component of the
    /// complete street name.  This function returns the cloned value of the field.
    pub fn street_name_pre_directional(&self) -> Option<StreetNamePreDirectional> {
        self.street_name_pre_directional
    }

    /// The `pre_modifier` field represents the street name premodifier component of the
    /// complete street name.  This function returns the cloned value of the field.
    pub fn pre_modifier(&self) -> Option<StreetNamePreModifier> {
        self.pre_modifier
    }

    /// The `pre_type` field represents the street name pretype component of the
    /// complete street name.  This function returns the cloned value of the field.
    pub fn pre_type(&self) -> Option<StreetNamePreType> {
        self.pre_type
    }

    /// The `separator` field represents the street name separator component of the
    /// complete street name.  This function returns the cloned value of the field.
    pub fn separator(&self) -> Option<StreetSeparator> {
        self.separator
    }

    /// The `street_name` field represents the street name component of the complete street name.
    /// This function returns the cloned value of the field.
    pub fn street_name(&self) -> Option<String> {
        self.street_name.clone()
    }

    /// The `street_name_post_type` field represents the street name posttype component of the complete street
    /// name.  This function returns the cloned value of the field.
    pub fn street_name_post_type(&self) -> Option<StreetNamePostType> {
        self.street_name_post_type
    }

    /// The `subaddress_type` field represents the subaddress type component of the complete
    /// subaddress.  This function returns the cloned value of the field.
    pub fn subaddress_type(&self) -> Option<SubaddressType> {
        self.subaddress_type
    }

    /// The `subaddress_identifier` field represents the subaddress identifier component of the complete
    /// subaddress.  This function returns the cloned value of the field.
    pub fn subaddress_identifier(&self) -> Option<String> {
        self.subaddress_identifier.clone()
    }

    /// The `building` field represents the unique identifier for a building.  This function
    /// returns the cloned value of the field.
    pub fn building(&self) -> Option<String> {
        self.building.clone()
    }

    /// The `floor` field represents the floor of the building on which the address point is located.  This function returns the value of the field.
    pub fn floor(&self) -> Option<i64> {
        self.floor
    }

    /// Sets the value of the `address_number` field to Some(`value`).
    pub fn set_address_number(&mut self, value: i64) {
        self.address_number = Some(value);
    }

    /// Sets the value of the `address_number_suffix` field to Some(`value`).
    pub fn set_address_number_suffix(&mut self, value: Option<&str>) {
        if let Some(suffix) = value {
            self.address_number_suffix = Some(suffix.to_owned());
        } else {
            self.address_number_suffix = None;
        }
    }

    /// Sets the value of the `street_name_pre_directional` field to Some(`value`).
    pub fn set_pre_directional(&mut self, value: &StreetNamePreDirectional) {
        self.street_name_pre_directional = Some(value.to_owned());
    }

    /// Sets the value of the `street_name` field to Some(`value`).
    pub fn set_street_name(&mut self, value: &str) {
        self.street_name = Some(value.to_owned());
    }

    /// Sets the value of the `street_name_post_type` field to Some(`value`).
    pub fn set_post_type(&mut self, value: &StreetNamePostType) {
        self.street_name_post_type = Some(value.to_owned());
    }

    /// Sets the value of the `subaddress_type` field to Some(`value`).
    pub fn set_subaddress_type(&mut self, value: &SubaddressType) {
        self.subaddress_type = Some(value.to_owned());
    }

    /// Sets the value of the `subaddress_identifier` field to Some(`value`).
    pub fn set_subaddress_identifier(&mut self, value: &str) {
        self.subaddress_identifier = Some(value.to_owned());
    }

    /// Returns a String representing the address label, consisting of the complete address number,
    /// complete street name and complete subaddress, used to produce map or mailing labels.
    pub fn label(&self) -> String {
        let mut address = "".to_owned();
        if let Some(address_number) = self.address_number() {
            address.push_str(&address_number.to_string());
        }
        if let Some(address_number_suffix) = self.address_number_suffix() {
            address.push(' ');
            address.push_str(&address_number_suffix);
        }
        if let Some(pre_directional) = self.street_name_pre_directional() {
            address.push(' ');
            address.push_str(&pre_directional.abbreviate());
        }
        if let Some(modifier) = self.pre_modifier() {
            address.push(' ');
            address.push_str(&modifier.upper());
        }
        if let Some(pre_type) = self.pre_type() {
            address.push(' ');
            address.push_str(&pre_type.upper());
        }
        if let Some(separator) = self.separator() {
            address.push(' ');
            address.push_str(&separator.upper());
        }
        if let Some(street_name) = self.street_name() {
            address.push(' ');
            address.push_str(&street_name);
        }
        if let Some(post_type) = self.street_name_post_type() {
            address.push(' ');
            address.push_str(&post_type.abbreviate());
        }
        let subtype_flag;
        if let Some(subtype) = self.subaddress_type() {
            subtype_flag = true;
            address.push(' ');
            address.push_str(&subtype.abbreviate());
        } else {
            subtype_flag = false;
        }
        if let Some(subaddress_identifier) = self.subaddress_identifier() {
            address.push(' ');
            if !subtype_flag {
                address.push('#');
            }
            address.push_str(&subaddress_identifier);
        }
        address
    }

    /// The `mailing` method prints the label format of the address, including postal community,
    /// state and zip code.
    pub fn mailing(&self) -> String {
        let mut address = self.label();
        if let Some(post_comm) = self.postal_community {
            address.push_str(", ");
            address.push_str(&post_comm.label());
        }
        if let Some(state) = self.state_name {
            address.push_str(", ");
            address.push_str(&state.abbreviate());
        }
        if let Some(zip) = self.zip_code {
            address.push(' ');
            address.push_str(&zip.to_string());
        }
        address
    }

    /// Returns a String representing the address label, consisting of the complete address number,
    /// complete street name and complete subaddress, used for the fully-disambiguated
    /// representation.
    pub fn complete_address(&self) -> String {
        let mut address = "".to_owned();
        if let Some(address_number) = self.address_number() {
            address.push_str(&format!("{}", address_number));
        }
        if let Some(address_number_suffix) = self.address_number_suffix() {
            address.push(' ');
            address.push_str(&address_number_suffix);
        }
        if let Some(pre_directional) = self.street_name_pre_directional() {
            address.push(' ');
            address.push_str(&format!("{pre_directional}"));
        }
        if let Some(modifier) = self.pre_modifier() {
            address.push(' ');
            address.push_str(&modifier.upper());
        }
        if let Some(pre_type) = self.pre_type() {
            address.push(' ');
            address.push_str(&pre_type.upper());
        }
        if let Some(separator) = self.separator() {
            address.push(' ');
            address.push_str(&separator.upper());
        }
        if let Some(street_name) = self.street_name() {
            address.push(' ');
            address.push_str(&street_name);
        }
        if let Some(post_type) = self.street_name_post_type() {
            address.push(' ');
            address.push_str(&format!("{post_type}"));
        }
        if let Some(subtype) = self.subaddress_type() {
            address.push(' ');
            address.push_str(&subtype.to_string().to_uppercase());
        }
        if let Some(subaddress_identifier) = self.subaddress_identifier() {
            address.push(' ');
            address.push_str(&subaddress_identifier);
        }
        address
    }

    /// The `standardize` method takes county address naming conventions and converts them to city
    /// naming conventions.
    pub fn standardize(&mut self) {
        tracing::trace!("Standardizing partial address.");
        if let Some(comp) = self.street_name().clone() {
            // if comp == "AZALEA DRIVE" {
            //     trace!("Fixing Azalea Drive Cutoff");
            //     self.set_street_name("AZALEA");
            //     self.set_post_type(&StreetNamePostType::DriveCutoff);
            // }
            //
            // if let Some(sub) = self.subaddress_identifier() {
            //     if comp == "LEWIS" && sub == "OFFICE" {
            //         info!("Fixing Lewis Ave Office");
            //         self.subaddress_identifier = None;
            //         self.set_subaddress_type(&SubaddressType::Office);
            //     }
            // }
            // if comp == "BEAVILLA VIEW" {
            //     trace!("Fixing Beavilla View");
            //     self.set_street_name("BEAVILLA");
            //     self.set_post_type(&StreetNamePostType::VIEW);
            // }
            // if comp == "COLUMBIA CREST" {
            //     trace!("Fixing Columbia Crest");
            //     self.set_street_name("COLUMBIA");
            //     self.set_post_type(&StreetNamePostType::CREST);
            // }
            // if comp == "HILLTOP VIEW" {
            //     trace!("Fixing Hilltop View");
            //     self.set_street_name("HILLTOP");
            //     self.set_post_type(&StreetNamePostType::VIEW);
            // }
            // if comp == "TENNESSEE VIEW" {
            //     trace!("Fixing Tennessee View");
            //     self.set_street_name("TENNESSEE");
            //     self.set_post_type(&StreetNamePostType::VIEW);
            // }
            // if comp == "MARILEE ROW" {
            //     trace!("Fixing Marilee Row");
            //     self.set_street_name("MARILEE");
            //     self.set_post_type(&StreetNamePostType::ROW);
            // }
            // if comp == "MEADOW GLEN" {
            //     trace!("Fixing Meadow Glen");
            //     self.set_street_name("MEADOW");
            //     self.set_post_type(&StreetNamePostType::GLEN);
            // }
            // if comp == "GENVERNA GLEN" {
            //     trace!("Fixing Genverna Glen");
            //     self.set_street_name("GENVERNA");
            //     self.set_post_type(&StreetNamePostType::GLEN);
            // }
            // if comp == "ROBERTSON CREST" {
            //     trace!("Fixing Robertson Crest");
            //     self.set_street_name("ROBERTSON");
            //     self.set_post_type(&StreetNamePostType::CREST);
            // }
            // if comp == "QUAIL CROSSING" {
            //     trace!("Fixing Quail Crossing");
            //     self.set_street_name("QUAIL");
            //     self.set_post_type(&StreetNamePostType::CROSSING);
            // }
            if comp == "SIDE"
                && self.street_name_pre_directional() == Some(StreetNamePreDirectional::WEST)
            {
                trace!("Fixing West Side Road");
                self.street_name_pre_directional = None;
                self.set_street_name("WEST SIDE");
            }
            if comp == "SHORE"
                && self.street_name_pre_directional() == Some(StreetNamePreDirectional::SOUTH)
            {
                trace!("Fixing South Shore Drive");
                self.street_name_pre_directional = None;
                self.set_street_name("SOUTH SHORE");
            }
        }
        // trace!("Running standardize");
        // if self.street_name_pre_directional() == Some(StreetNamePreDirectional::WEST)
        //     && self.street_name() == Some("SIDE".to_string())
        // {
        //     self.street_name_pre_directional = None;
        //     self.street_name = Some("WEST SIDE".to_string());
        // }
        // if self.street_name_pre_directional() == Some(StreetNamePreDirectional::WEST)
        //     && self.street_name().is_none()
        // {
        //     tracing::info!("Fixing West Street");
        //     self.street_name_pre_directional = None;
        //     self.street_name = Some("WEST".to_string());
        // }
    }
}

/// The `PartialAddresses` struct holds a `records` field that contains a vector of type
/// [`PartialAddress`].
#[derive(
    Debug,
    Clone,
    Default,
    Serialize,
    Deserialize,
    PartialEq,
    Eq,
    PartialOrd,
    Ord,
    Hash,
    Deref,
    DerefMut,
)]
pub struct PartialAddresses(Vec<PartialAddress>);

impl PartialAddresses {
    /// Creates a new `PartialAddresses` struct from the provided `records`, a vector of
    /// [`PartialAddress`] objects.
    pub fn new(records: Vec<PartialAddress>) -> Self {
        Self(records)
    }
}

impl From<Vec<PartialAddress>> for PartialAddresses {
    fn from(records: Vec<PartialAddress>) -> Self {
        PartialAddresses(records)
    }
}

impl From<&FireInspections> for PartialAddresses {
    fn from(fire_inspections: &FireInspections) -> Self {
        PartialAddresses::from(
            fire_inspections
                .iter()
                .map(|r| r.address().clone())
                .collect::<Vec<PartialAddress>>(),
        )
    }
}

impl IntoBin<PartialAddresses> for PartialAddresses {
    fn load<P: AsRef<std::path::Path>>(path: P) -> Result<Self, AddressError> {
        let config = bincode::config::standard();
        match from_bin(path) {
            Ok(records) => {
                let (result, _) = bincode::serde::decode_from_slice::<
                    Self,
                    bincode::config::Configuration,
                >(&records, config)
                .map_err(|source| Decode::new(source, line!(), file!().into()))?;
                Ok(result)
            }
            Err(source) => Err(AddressErrorKind::from(source).into()),
        }
    }

    fn save<P: AsRef<std::path::Path>>(&self, path: P) -> Result<(), AddressError> {
        to_bin(self, path)
    }
}

impl IntoCsv<PartialAddresses> for PartialAddresses {
    fn from_csv<P: AsRef<std::path::Path>>(path: P) -> Result<Self, Io> {
        let records = from_csv(path)?;
        Ok(Self(records))
    }

    fn to_csv<P: AsRef<std::path::Path>>(&mut self, path: P) -> Result<(), AddressErrorKind> {
        to_csv(&mut self.0, path.as_ref().into())
    }
}

/// Deltas - Measuring the distance between points based upon matching values.
/// The `label` field of `AddressDelta` holds the matching value and the `delta`
/// field holds the distance between matching points.
#[derive(Debug, Clone, Default, Serialize, Deserialize, PartialEq, PartialOrd)]
pub struct AddressDelta {
    /// Addresses match by address label.
    pub label: String,
    /// Distance between points representing the same address.
    pub delta: f64,
    /// Reference latitude from the subject address.
    pub latitude: f64,
    /// Reference longitude from the subject address.
    pub longitude: f64,
}

impl AddressDelta {
    /// Initiates a new `AddressDelta` struct from the provided input values.
    /// Modified to temporarily take Cartesian coordinates.
    pub fn new<T: Address + Cartesian>(address: &T, delta: f64) -> Self {
        AddressDelta {
            label: address.label(),
            delta,
            latitude: address.y(),
            longitude: address.x(),
        }
    }
}

impl Geographic for AddressDelta {
    fn latitude(&self) -> f64 {
        self.latitude
    }

    fn longitude(&self) -> f64 {
        self.longitude
    }
}

// This is a hack to make the distance calculations work until I can migrate to the geo library.
impl Cartesian for AddressDelta {
    fn y(&self) -> f64 {
        self.latitude
    }

    fn x(&self) -> f64 {
        self.longitude
    }
}

/// The `AddressDeltas` struct holds a `records` field that contains a vector of type
/// [`AddressDelta`].
#[derive(Debug, Clone, Default, Serialize, Deserialize, PartialEq, PartialOrd, Deref, DerefMut)]
pub struct AddressDeltas(Vec<AddressDelta>);

impl AddressDeltas {
    /// Creates a new instance of `AddressDeltas` from a vector of type [`AddressDelta`].
    pub fn new(records: Vec<AddressDelta>) -> Self {
        Self(records)
    }
}

impl IntoBin<AddressDeltas> for AddressDeltas {
    fn load<P: AsRef<std::path::Path>>(path: P) -> Result<Self, AddressError> {
        let config = bincode::config::standard();
        match from_bin(path) {
            Ok(records) => {
                let (result, _) = bincode::serde::decode_from_slice::<
                    Self,
                    bincode::config::Configuration,
                >(&records, config)
                .map_err(|source| Decode::new(source, line!(), file!().into()))?;
                Ok(result)
            }
            Err(source) => Err(AddressErrorKind::from(source).into()),
        }
    }

    fn save<P: AsRef<std::path::Path>>(&self, path: P) -> Result<(), AddressError> {
        to_bin(self, path)
    }
}

impl IntoCsv<AddressDeltas> for AddressDeltas {
    fn from_csv<P: AsRef<std::path::Path>>(path: P) -> Result<Self, Io> {
        let records = from_csv(path)?;
        Ok(Self(records))
    }

    fn to_csv<P: AsRef<std::path::Path>>(&mut self, path: P) -> Result<(), AddressErrorKind> {
        to_csv(&mut self.0, path.as_ref().into())
    }
}