Whether the server has been configured (registration completed).
(&self)
| 122 | impl ServerConfig { |
| 123 | /// Whether the server has been configured (registration completed). |
| 124 | pub fn is_configured(&self) -> bool { |
| 125 | self.url.is_some() && self.default_org.is_some() |
| 126 | } |
| 127 | |
| 128 | /// Build the org-scoped base URL. |
| 129 | /// |
no outgoing calls
no test coverage detected