1 2 3 4 5 6 7 8 9 10 11
// Copyright 2026 Umberto Gotti <umberto.gotti@umbertogotti.dev> // Licensed under the MIT License // SPDX-License-Identifier: MIT use std::path::PathBuf; use anyhow::Result; pub trait Walk { fn rust_files(&self) -> Result<Vec<(PathBuf, String)>>; }