1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetPropertiesResponse {
#[prost(string, tag="1")]
pub device_id: ::prost::alloc::string::String,
#[prost(message, repeated, tag="2")]
pub properties: ::prost::alloc::vec::Vec<super::props::Property>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetDeviceResponse {
#[prost(message, optional, tag="1")]
pub device: ::core::option::Option<super::devices::AstroDevice>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetDevicesResponse {
#[prost(message, repeated, tag="1")]
pub devices: ::prost::alloc::vec::Vec<super::devices::AstroDevice>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetSerialDeviceResponse {
#[prost(message, optional, tag="1")]
pub device: ::core::option::Option<super::devices::AstroSerialDevice>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetSerialDevicesResponse {
#[prost(message, repeated, tag="1")]
pub devices: ::prost::alloc::vec::Vec<super::devices::AstroSerialDevice>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct EfwCalibrationResponse {
#[prost(string, tag="1")]
pub status: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SetPropertyResponse {
#[prost(enumeration="super::devices::actions::DeviceActions", tag="1")]
pub status: i32,
}