bnr_xfs/history/
extraction_reject_details.rs

1use crate::create_xfs_struct;
2use crate::{SuperimposedCount, TooLongCount};
3
4create_xfs_struct!(
5    ExtractionRejectDetails,
6    "extractionRejectDetails",
7    [
8        too_long_count: TooLongCount,
9        superimposed_count: SuperimposedCount
10    ],
11    "Represents the details of extraction reject events."
12);