pub fn parse_optional_decimal(s: &Option<String>) -> Result<Option<Decimal>>Expand description
Parses an optional string to Decimal, returning None if the string is None or empty.
ยงErrors
Returns an error if the string cannot be parsed as a Decimal.