Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
holger-ui
An operator/admin UI for holger.
The UI is built in two layers:
-
[
data] — the transport-agnostic view-model. It drives the core [traits::HolgerObject] API (satisfied byLocalHolgerfor direct, in-process rust calls into holger core, orRemoteHolgerover gRPC) and turns each response into a plain view struct that exposesstate_json(). This is the "render-from-data / see-what-the-user-sees as data" law: the UI can be driven and asserted headlessly with no display and no egui. It is the default build and carries the unit tests. -
[
app] (behind theguifeature) — the egui presentation, built from facett components, mirroring the nornir-viz idiom (one blocking core call per UI action on a private current-thread runtime).
Both layers are generic over Arc<dyn HolgerObject>, so the same UI runs
embedded (no network) or against a remote holger server.