blob: 666e47412a820756a50839706b80100fb8688774 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#[derive(Debug)]
pub struct Suggestion;
impl Suggestion {
pub fn new(_value: String, _description: Option<String>) -> Self {
todo!()
}
pub fn get_value(&self) -> String {
todo!()
}
pub fn get_description(&self) -> String {
todo!()
}
}
|