bnr_xfs/history/
recognition_reject_details.rs

1use crate::create_xfs_struct;
2use crate::{ForgeryCount, UnknownCount};
3
4create_xfs_struct!(
5    RecognitionRejectDetails,
6    "recognitionRejectDetails",
7    [
8        forgery_count: ForgeryCount,
9        unknown_count: UnknownCount
10    ],
11    "Represents the details of recognition reject events."
12);