Struct opcua_types::service_types::NotificationMessage
[−]
[src]
pub struct NotificationMessage {
pub sequence_number: UInt32,
pub publish_time: DateTime,
pub notification_data: Option<Vec<ExtensionObject>>,
}Fields
sequence_number: UInt32
publish_time: DateTime
notification_data: Option<Vec<ExtensionObject>>
Methods
impl NotificationMessage[src]
fn new_data_change(
sequence_number: UInt32,
publish_time: DateTime,
monitored_items: Vec<MonitoredItemNotification>
) -> NotificationMessage[src]
sequence_number: UInt32,
publish_time: DateTime,
monitored_items: Vec<MonitoredItemNotification>
) -> NotificationMessage
fn data_change_notifications(&self) -> Vec<DataChangeNotification>[src]
Trait Implementations
impl Debug for NotificationMessage[src]
impl Clone for NotificationMessage[src]
fn clone(&self) -> NotificationMessage[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl PartialEq for NotificationMessage[src]
fn eq(&self, __arg_0: &NotificationMessage) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &NotificationMessage) -> bool[src]
This method tests for !=.
impl MessageInfo for NotificationMessage[src]
impl BinaryEncoder<NotificationMessage> for NotificationMessage[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.