()
| 2184 | return LeanIOResult::error_string(&format!( |
| 2185 | "rs_env_extract: failed to write {out}: {e}" |
| 2186 | )); |
| 2187 | } |
| 2188 | if !quiet { |
| 2189 | eprintln!( |
| 2190 | "[rs_env_extract] {} name(s) → {} ({} bytes) from {path}", |
| 2191 | names_vec.len(), |
| 2192 | out, |
| 2193 | sub_bytes.len(), |
| 2194 | ); |
| 2195 | } |
| 2196 | LeanIOResult::ok(LeanOwned::box_usize(0)) |
| 2197 | } |
| 2198 | |
| 2199 | // =========================================================================== |
no test coverage detected