ParseFnTyped

Type Alias ParseFnTyped 

Source
pub type ParseFnTyped<T> = for<'mem> fn(&str, TypedPtrUninit<'mem, T>) -> Result<TypedPtrMut<'mem, T>, ParseError>;
Expand description

Function to parse a value from a string.

If both DisplayFn and ParseFn are set, we should be able to round-trip the value.