fn eq()

in Traits/OperatorOverloading/Task/src/lib.rs [21:25]


    fn eq(&self, other: &Self) -> bool {
        self.title == other.title
            && self.description == other.description
            && self.status == other.status
    }