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
#![allow(unused_attributes)]
use std::io::{Read, Write};
#[allow(unused_imports)]
use crate::{
encoding::*,
basic_types::*,
service_types::impls::MessageInfo,
node_ids::ObjectId,
string::UAString,
service_types::enums::MessageSecurityMode,
};
#[derive(Debug, Clone, PartialEq)]
pub struct EndpointType {
pub endpoint_url: UAString,
pub security_mode: MessageSecurityMode,
pub security_policy_uri: UAString,
pub transport_profile_uri: UAString,
}
impl MessageInfo for EndpointType {
fn object_id(&self) -> ObjectId {
ObjectId::EndpointType_Encoding_DefaultBinary
}
}
impl BinaryEncoder<EndpointType> for EndpointType {
fn byte_len(&self) -> usize {
let mut size = 0;
size += self.endpoint_url.byte_len();
size += self.security_mode.byte_len();
size += self.security_policy_uri.byte_len();
size += self.transport_profile_uri.byte_len();
size
}
#[allow(unused_variables)]
fn encode<S: Write>(&self, stream: &mut S) -> EncodingResult<usize> {
let mut size = 0;
size += self.endpoint_url.encode(stream)?;
size += self.security_mode.encode(stream)?;
size += self.security_policy_uri.encode(stream)?;
size += self.transport_profile_uri.encode(stream)?;
Ok(size)
}
#[allow(unused_variables)]
fn decode<S: Read>(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult<Self> {
let endpoint_url = UAString::decode(stream, decoding_options)?;
let security_mode = MessageSecurityMode::decode(stream, decoding_options)?;
let security_policy_uri = UAString::decode(stream, decoding_options)?;
let transport_profile_uri = UAString::decode(stream, decoding_options)?;
Ok(EndpointType {
endpoint_url,
security_mode,
security_policy_uri,
transport_profile_uri,
})
}
}