Struct opcua_server::prelude::MessageHeader [−][src]
pub struct MessageHeader {
pub message_type: MessageType,
pub message_size: u32,
}Fields
message_type: MessageTypemessage_size: u32Implementations
pub fn read_bytes<S>(
stream: &mut S,
decoding_limits: &DecodingLimits
) -> Result<Vec<u8, Global>, Error> where
S: Read,
pub fn read_bytes<S>(
stream: &mut S,
decoding_limits: &DecodingLimits
) -> Result<Vec<u8, Global>, Error> where
S: Read,
Reads the bytes of the stream to a buffer. If first 4 bytes are invalid, code returns an error
Trait Implementations
Returns the exact byte length of the structure as it would be if encode were called.
This may be called prior to writing to ensure the correct amount of space is available. Read more
Encodes the instance to the write stream.
pub fn decode<S>(
stream: &mut S,
&DecodingLimits
) -> Result<MessageHeader, StatusCode> where
S: Read,
pub fn decode<S>(
stream: &mut S,
&DecodingLimits
) -> Result<MessageHeader, StatusCode> where
S: Read,
Decodes an instance from the read stream. The decoding limits are restrictions set by the server / client
on the length of strings, arrays etc. If these limits are exceeded the implementation should
return with a BadDecodingError as soon as possible. Read more
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for MessageHeader
impl Send for MessageHeader
impl Sync for MessageHeader
impl Unpin for MessageHeader
impl UnwindSafe for MessageHeader
Blanket Implementations
Mutably borrows from an owned value. Read more