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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
use std::io::{Read, Write};
#[allow(unused_imports)]
use encoding::*;
#[allow(unused_imports)]
use basic_types::*;
#[allow(unused_imports)]
use data_types::*;
#[allow(unused_imports)]
use data_value::*;
#[allow(unused_imports)]
use attribute::*;
#[allow(unused_imports)]
use date_time::*;
#[allow(unused_imports)]
use node_id::*;
#[allow(unused_imports)]
use service_types::*;
#[allow(unused_imports)]
use variant::*;
#[allow(unused_imports)]
use generated::node_ids::*;
#[allow(unused_imports)]
use generated::status_codes::StatusCode;
#[allow(unused_imports)]
use generated::status_codes::StatusCode::*;
#[derive(Debug, Clone, PartialEq)]
pub struct ComplexNumberType {
pub real: Float,
pub imaginary: Float,
}
impl MessageInfo for ComplexNumberType {
fn object_id(&self) -> ObjectId {
ObjectId::ComplexNumberType_Encoding_DefaultBinary
}
}
impl BinaryEncoder<ComplexNumberType> for ComplexNumberType {
fn byte_len(&self) -> usize {
let mut size = 0;
size += self.real.byte_len();
size += self.imaginary.byte_len();
size
}
#[allow(unused_variables)]
fn encode<S: Write>(&self, stream: &mut S) -> EncodingResult<usize> {
let mut size = 0;
size += self.real.encode(stream)?;
size += self.imaginary.encode(stream)?;
Ok(size)
}
#[allow(unused_variables)]
fn decode<S: Read>(stream: &mut S) -> EncodingResult<Self> {
let real = Float::decode(stream)?;
let imaginary = Float::decode(stream)?;
Ok(ComplexNumberType {
real,
imaginary,
})
}
}