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