pub trait FormatNested {
// Required method
fn fmt_nested(
&self,
f: &mut Formatter<'_>,
lean_cx: &LeanCtxt<'_, '_, '_>,
fmt_cx: &mut ConstraintFormatter,
) -> Result;
}Required Methods§
fn fmt_nested( &self, f: &mut Formatter<'_>, lean_cx: &LeanCtxt<'_, '_, '_>, fmt_cx: &mut ConstraintFormatter, ) -> Result
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".