pub type ParseFnTyped<T> = for<'mem> fn(&str, TypedPtrUninit<'mem, T>) -> Result<TypedPtrMut<'mem, 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