#![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,
node_id::NodeId,
localized_text::LocalizedText,
};
#[derive(Debug, Clone, PartialEq)]
pub struct Argument {
pub name: UAString,
pub data_type: NodeId,
pub value_rank: i32,
pub array_dimensions: Option<Vec<u32>>,
pub description: LocalizedText,
}
impl MessageInfo for Argument {
fn object_id(&self) -> ObjectId {
ObjectId::Argument_Encoding_DefaultBinary
}
}
impl BinaryEncoder<Argument> for Argument {
fn byte_len(&self) -> usize {
let mut size = 0;
size += self.name.byte_len();
size += self.data_type.byte_len();
size += self.value_rank.byte_len();
size += byte_len_array(&self.array_dimensions);
size += self.description.byte_len();
size
}
#[allow(unused_variables)]
fn encode<S: Write>(&self, stream: &mut S) -> EncodingResult<usize> {
let mut size = 0;
size += self.name.encode(stream)?;
size += self.data_type.encode(stream)?;
size += self.value_rank.encode(stream)?;
size += write_array(stream, &self.array_dimensions)?;
size += self.description.encode(stream)?;
Ok(size)
}
#[allow(unused_variables)]
fn decode<S: Read>(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult<Self> {
let name = UAString::decode(stream, decoding_options)?;
let data_type = NodeId::decode(stream, decoding_options)?;
let value_rank = i32::decode(stream, decoding_options)?;
let array_dimensions: Option<Vec<u32>> = read_array(stream, decoding_options)?;
let description = LocalizedText::decode(stream, decoding_options)?;
Ok(Argument {
name,
data_type,
value_rank,
array_dimensions,
description,
})
}
}