Type Definition opcua_types::basic_types::UInt32
[−]
[src]
type UInt32 = u32;
An integer value between 0 and 4 294 967 295. Data type ID 7
Trait Implementations
impl BinaryEncoder<UInt32> for UInt32[src]
fn byte_len(&self) -> usize[src]
Returns the byte length of the structure. This calculation should be exact and as efficient as possible. Read more
fn encode<S: Write>(&self, stream: &mut S) -> EncodingResult<usize>[src]
Encodes the instance to the write stream.
fn decode<S: Read>(stream: &mut S) -> EncodingResult<Self>[src]
Decodes an instance from the read stream.