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
use std::time::Duration;
use crate::proto::etcdserverpb;
use crate::ResponseHeader;
pbwrap_request!(
LeaseGrantRequest
);
impl LeaseGrantRequest {
pub fn new(ttl: Duration) -> Self {
Self {
proto: etcdserverpb::LeaseGrantRequest {
ttl: ttl.as_secs() as i64,
id: 0,
},
}
}
pub fn set_id(&mut self, id: u64) {
self.proto.id = id as i64;
}
}
pbwrap_response!(LeaseGrantResponse);
impl LeaseGrantResponse {
pub fn take_header(&mut self) -> Option<ResponseHeader> {
self.proto.header.take().map(From::from)
}
pub fn id(&self) -> u64 {
self.proto.id as u64
}
pub fn ttl(&self) -> u64 {
self.proto.ttl as u64
}
}