Struct opcua_server::subscriptions::PublishRequestEntry
[−]
[src]
pub struct PublishRequestEntry {
pub request_id: UInt32,
pub request: PublishRequest,
}The publish request entry preserves the request_id which is part of the chunk layer but clients are fickle about receiving responses from the same as the request. Normally this is easy because request and response are synchronous, but publish requests are async, so we preserve the request_id so that later we can send out responses that have the proper req id
Fields
request_id: UInt32
request: PublishRequest
Trait Implementations
impl Clone for PublishRequestEntry[src]
fn clone(&self) -> PublishRequestEntry[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