Parse a string to the native type with a format string When not implemented, the format string is unused, and this method is equivalent to [parse](#tymethod.parse)
(string: &str, _format: &str)
| 439 | /// |
| 440 | /// When not implemented, the format string is unused, and this method is equivalent to [parse](#tymethod.parse) |
| 441 | fn parse_formatted(string: &str, _format: &str) -> Option<Self::Native> { |
| 442 | Self::parse(string) |
| 443 | } |
| 444 | } |
| 445 | |
| 446 | impl Parser for Float16Type { |