web_url/url/
port.rs

1use crate::WebUrl;
2
3impl WebUrl {
4    //! Port
5
6    /// Gets the optional port.
7    pub fn port(&self) -> Option<u16> {
8        self.port
9    }
10}