Type Alias ParseFnTyped

Source
pub type ParseFnTyped<T> = for<'mem> fn(s: &str, target: TypedPtrUninit<'mem, T>) -> Result<&'mem mut 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.