blob: 1203ec88dc2c0bfd99e2f5c9b9f1f72efbebcb7d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#[derive(Debug)]
pub struct CompletionInput;
impl CompletionInput {
pub fn get_completion_type(&self) -> String {
todo!()
}
pub fn get_completion_name(&self) -> Option<String> {
todo!()
}
pub fn get_completion_value(&self) -> String {
todo!()
}
pub fn must_suggest_option_values_for(&self, _name: &str) -> bool {
todo!()
}
pub fn must_suggest_argument_values_for(&self, _name: &str) -> bool {
todo!()
}
}
|