File tree Expand file tree Collapse file tree 3 files changed +4
-1
lines changed Expand file tree Collapse file tree 3 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 11name : Rust
22
3- on : [push]
3+ on : [push, pull_request ]
44
55jobs :
66 style :
Original file line number Diff line number Diff line change 55use crate :: query:: { QueryType , ValidQuery } ;
66use crate :: { Error , Query } ;
77
8+ #[ derive( Debug , Clone ) ]
89pub struct ReadQuery {
910 queries : Vec < String > ,
1011}
Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ impl<T: Into<Type>> WriteType for Option<T> {
2727}
2828
2929/// Internal Representation of a Write query that has not yet been built
30+ #[ derive( Debug , Clone ) ]
3031pub struct WriteQuery {
3132 fields : Vec < ( String , Type ) > ,
3233 tags : Vec < ( String , Type ) > ,
@@ -105,6 +106,7 @@ impl WriteQuery {
105106 }
106107}
107108
109+ #[ derive( Debug , Clone ) ]
108110pub enum Type {
109111 Boolean ( bool ) ,
110112 Float ( f64 ) ,
You can’t perform that action at this time.
0 commit comments