1 2 3 4 5 6 7 8
use crate::decode_anomaly::DecodeAnomaly; use crate::decode_output::DecodeOutput; #[derive(Clone, Debug, Eq, PartialEq)] pub struct DecodeResult { pub output: DecodeOutput, pub anomaly: Option<DecodeAnomaly>, }