This commit is contained in:
chaos 2024-11-21 09:58:59 +00:00
parent b8128ff2f4
commit 9237604532

View file

@ -85,19 +85,6 @@ impl Add for StandardIngestionDose {
}
}
impl Add<UnknownIngestionDose> for StandardIngestionDose {
type Output = Self;
fn add(self, _rhs: UnknownIngestionDose) -> Self::Output {
StandardIngestionDose {
dose: self.dose,
unit: self.unit,
contains_unknown: true,
estimation: self.estimation,
}
}
}
impl Mul for StandardIngestionDose {
type Output = Self;