Presenting design and applications of a fast 2D axisymmetric finite-element structural solver written in Rust as part of cfsem (docs.rs/cfsem), an open-source scientific computing library developed at Commonwealth Fusion Systems. The talk focuses on achieving fast solve times in the Rust implementation, rather than the underlying structural mechanics. We walk through how mesh connectivity and reference data are threaded through the assembly routines to keep the inner element kernel allocation-free, how faer (docs.rs/faer/latest/faer/) is used to compress and factor the sparse stiffness matrix, and the memory-layout choices that drive element-loop performance. A brief application to a composite-overwrap pressure vessel grounds the techniques in a specific example. The intended takeaway is a set of transferable patterns for anyone building their own fast numerical solver in Rust.