fn parse_optional_value<'a, O, P: Parser<&'a str, O, ErrMode<ContextError>>>(
    keyword: &Keyword,
    value: &'a Value,
    parser: P,
) -> Result<Option<O>, BridgeError>Expand description
Ensures a combination of Keyword and Value uses a Value::Single and parses the value
as a specific, but optional type.
Returns None if value is empty.
ยงErrors
Returns a error for keyword if value is not Value::Single or cannot be parsed as the
specific type.