Whether the server has been configured (registration completed).
(&self)
| 113 | impl ServerConfig { |
| 114 | /// Whether the server has been configured (registration completed). |
| 115 | pub fn is_configured(&self) -> bool { |
| 116 | self.url.is_some() && self.default_org.is_some() |
| 117 | } |
| 118 | |
| 119 | /// Build the org-scoped base URL. |
| 120 | /// |
no outgoing calls
no test coverage detected