powerio docs

Reference material that does not fit in the top level README or a crate doc comment.

Rendered API docs (rustdoc) for all crates: https://eigenergy.github.io/powerio/.

Architecture

Network is the canonical model: format neutral, with loads, shunts, branches, and generators as first-class records. Every reader produces a Network and every writer consumes one, so a format is one reader/writer at the hub rather than a pairwise converter, and adding one touches a single module. IndexedNetwork is the dense [0, n) analysis view derived from a Network; the matrix builders work from it. The parser, the hub, the source retaining writer, and the converters live in the powerio crate (light dependencies); the matrices and graph views live in powerio-matrix, which re-exports powerio so one import pulls in both layers.