We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c30a260 commit 3489b47Copy full SHA for 3489b47
1 file changed
src/v1.rs
@@ -14,7 +14,17 @@
14
15
tonic::include_proto!("greptime.v1");
16
17
+use crate::v1::value::ValueData;
18
+
19
pub const GREPTIME_GRPC_DESC: &[u8] = tonic::include_file_descriptor_set!("greptime_grpc_desc");
20
21
pub mod meta;
22
pub mod region;
23
24
+impl From<ValueData> for Value {
25
+ fn from(value: ValueData) -> Self {
26
+ Value {
27
+ value_data: Some(value),
28
+ }
29
30
+}
0 commit comments