MCPcopy Create free account
hub / github.com/apache/arrow-rs / parse_formatted

Method parse_formatted

arrow-cast/src/parse.rs:441–443  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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
446impl Parser for Float16Type {

Callers

nothing calls this directly

Implementers 1

parse.rsarrow-cast/src/parse.rs

Calls 1

parseFunction · 0.50

Tested by

no test coverage detected