pub fn parse_uint16(s: &str) -> Result<u16, ParseError>
Expand description
Parses an u16
from s
.
Valid values are whatever the std::str::FromStr
implementation on u16
accepts,
plus leading and trailing whitespace.
pub fn parse_uint16(s: &str) -> Result<u16, ParseError>
Parses an u16
from s
.
Valid values are whatever the std::str::FromStr
implementation on u16
accepts,
plus leading and trailing whitespace.