You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
However, the current API has pub fn port(&self) -> Option<Port<&str>> but it's not possible to
distinguish when invalid port number vs when no port number.
.
Example:
let uri: Uri = "/hello/world".parse().unwrap();
assert!(uri.port().is_none());
let uri: Uri = "/hello/world:-9933".parse().unwrap();
assert!(uri.port().is_none());
Opinions about having pub fn port(&self) -> Result<Option<Port<&str>, Error> or something similar?