@@ -24,6 +24,7 @@ pub struct AskResponse {
24
24
#[ serde( rename_all = "snake_case" ) ]
25
25
pub struct Answer {
26
26
pub success : bool ,
27
+ pub error : Option < String > ,
27
28
pub has_more : bool ,
28
29
pub variables : Vec < String > ,
29
30
pub results : Vec < Result > ,
@@ -39,19 +40,12 @@ pub struct Result {
39
40
#[ serde( rename_all = "snake_case" ) ]
40
41
pub struct Substitution {
41
42
pub variable : String ,
42
- pub term : Term ,
43
+ pub expression : String ,
43
44
}
44
45
45
- #[ derive( Serialize , Deserialize , Default , Clone , PartialEq , Eq , JsonSchema , Debug ) ]
46
- #[ serde( rename_all = "snake_case" ) ]
47
- pub struct Term {
48
- pub name : String ,
49
- pub arguments : Vec < Term > ,
50
- }
51
-
52
- impl Term {
53
- pub fn parse ( self ) -> std:: result:: Result < TermValue , TermParseError > {
54
- from_str ( self . name . as_str ( ) )
46
+ impl Substitution {
47
+ pub fn parse_expression ( self ) -> std:: result:: Result < TermValue , TermParseError > {
48
+ from_str ( self . expression . as_str ( ) )
55
49
}
56
50
}
57
51
@@ -62,11 +56,11 @@ mod tests {
62
56
#[ test]
63
57
fn term_parse ( ) {
64
58
assert_eq ! (
65
- Term {
66
- name : "'hello' " . to_string( ) ,
67
- arguments : vec! [ ] ,
59
+ Substitution {
60
+ variable : "X " . to_string( ) ,
61
+ expression : "'hello'" . to_string ( ) ,
68
62
}
69
- . parse ( ) ,
63
+ . parse_expression ( ) ,
70
64
Ok ( TermValue :: Value ( "hello" . to_string( ) ) )
71
65
) ;
72
66
}
0 commit comments