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
use std::io::{Read, Write};
#[allow(unused_imports)]
use crate::{
encoding::*,
basic_types::*,
service_types::impls::MessageInfo,
node_ids::ObjectId,
node_id::NodeId,
qualified_name::QualifiedName,
};
#[derive(Debug, Clone, PartialEq)]
pub struct DataTypeDescription {
pub data_type_id: NodeId,
pub name: QualifiedName,
}
impl MessageInfo for DataTypeDescription {
fn object_id(&self) -> ObjectId {
ObjectId::DataTypeDescription_Encoding_DefaultBinary
}
}
impl BinaryEncoder<DataTypeDescription> for DataTypeDescription {
fn byte_len(&self) -> usize {
let mut size = 0;
size += self.data_type_id.byte_len();
size += self.name.byte_len();
size
}
#[allow(unused_variables)]
fn encode<S: Write>(&self, stream: &mut S) -> EncodingResult<usize> {
let mut size = 0;
size += self.data_type_id.encode(stream)?;
size += self.name.encode(stream)?;
Ok(size)
}
#[allow(unused_variables)]
fn decode<S: Read>(stream: &mut S, decoding_limits: &DecodingLimits) -> EncodingResult<Self> {
let data_type_id = NodeId::decode(stream, decoding_limits)?;
let name = QualifiedName::decode(stream, decoding_limits)?;
Ok(DataTypeDescription {
data_type_id,
name,
})
}
}