blob: 246c4e59ea90fa24fb9aa5996b5d64078a0f8fc7 (
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::ConstraintInterface;
#[derive(Debug)]
pub struct CompilingMatcher;
impl CompilingMatcher {
pub fn r#match(_constraint: &dyn ConstraintInterface, _package: &dyn std::any::Any) -> bool {
todo!()
}
pub fn matches(_constraint: &dyn ConstraintInterface, _operator: i64, _version: &str) -> bool {
todo!()
}
pub fn match_(_constraint: &dyn ConstraintInterface, _operator: i64, _version: &str) -> bool {
todo!()
}
pub fn clear() {
todo!()
}
}
|