pub trait Inv { // Required method spec fn inv(self) -> bool; }
{ match self { Some(t) => t.inv(), None => true, } }