pub type ParseFnTyped<T> = for<'mem> fn(s: &str, target: TypedPtrUninit<'mem, T>) -> Result<&'mem mut T, ParseError>;
Function to parse a value from a string.
If both DisplayFn and ParseFn are set, we should be able to round-trip the value.
DisplayFn
ParseFn