pub trait SpecRecBody {
type Param;
type T;
type Body: SpecCombinator<T = Self::T>;
// Required method
spec fn spec_body(
&self,
param: Self::Param,
rec: ParamRecSpecs<Self::Param, Self::T>,
) -> Self::Body;
}Expand description
Defines one level of a recursive format for use with super::FixWith.