fn parse_money(&mut self) -> ParseResult<MoneyNode> { let currency = self.parse_currency_symbol()?; let amount = self.parse_amount()?; return Ok(MoneyNode { currency, amount }); }
https://github.com/sqlparser-rs/sqlparser-rs