pub trait Curable {
type Cure;
type Cured;
// Required methods
fn cure(self) -> Self::Cured;
fn cure_with(self, cure: Self::Cure) -> Self::Cured;
}Expand description
don’t let your guards die! they served you well o7 here’s the antidote :)