blob: 5a8f09d49bb467aa16d119e669e57288392fe0ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#[derive(Debug)]
pub struct CompilingMatcher;
impl CompilingMatcher {
pub fn r#match(_constraint: &dyn std::any::Any, _package: &dyn std::any::Any) -> bool {
todo!()
}
pub fn matches(_constraint: &dyn std::any::Any, _operator: &str, _version: &str) -> bool {
todo!()
}
pub fn match_(_constraint: &dyn std::any::Any, _operator: &str, _version: &str) -> bool {
todo!()
}
pub fn clear() {
todo!()
}
}
|