Home
last modified time | relevance | path

Searched refs:ReleaseFileMatch (Results 1 – 2 of 2) sorted by relevance

/dports/devel/sentry-cli/sentry-cli-1.71.0/src/utils/
H A Dfile_search.rs23 pub struct ReleaseFileMatch { struct
88 pub fn collect_file(path: PathBuf) -> Result<ReleaseFileMatch, Error> { in collect_file() argument
92 Ok(ReleaseFileMatch { in collect_file()
99 pub fn collect_files(&self) -> Result<Vec<ReleaseFileMatch>, Error> { in collect_files() argument
158 let file_match = ReleaseFileMatch { in collect_files()
H A Dsourcemaps.rs16 use crate::utils::file_search::ReleaseFileMatch;
163 pending_sources: HashSet<(String, ReleaseFileMatch)>,
184 pub fn add(&mut self, url: &str, file: ReleaseFileMatch) -> Result<(), Error> { in add()