pub struct FromFn<F>(/* private fields */)
where
F: Fn(&mut Formatter<'_>) -> Result<(), Error>;
🔬This is a nightly-only experimental API. (
debug_closure_helpers
)Expand description
Implements fmt::Debug
and fmt::Display
using a function.
Created with from_fn
.