ros2_interfaces_rolling/example_interfaces/srv/
add_two_ints.rs

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
38
39
40
41
42
43
44
45
46
use serde::{Deserialize, Serialize};


#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct AddTwoIntsReq {
    pub a: i64,
    pub b: i64,
}

impl Default for AddTwoIntsReq {
    fn default() -> Self {
        AddTwoIntsReq {
            a: 0,
            b: 0,
        }
    }
}

impl ros2_client::Message for AddTwoIntsReq {}



#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct AddTwoIntsRes {
    pub sum: i64,
}

impl Default for AddTwoIntsRes {
    fn default() -> Self {
        AddTwoIntsRes {
            sum: 0,
        }
    }
}

impl ros2_client::Message for AddTwoIntsRes {}


pub struct AddTwoInts;
impl ros2_client::Service for AddTwoInts {
    type Request = AddTwoIntsReq;
    type Response = AddTwoIntsRes;

    fn request_type_name(&self) -> &str { "AddTwoIntsReq" }
    fn response_type_name(&self) -> &str { "AddTwoIntsRes" }
}