[−][src]Struct opcua_server::prelude::request_header::RequestHeader
The RequestHeader contains information common to every request from a client to the server.
Fields
authentication_token: NodeIdThe secret Session identifier used to verify that the request is associated with the Session. The SessionAuthenticationToken type is defined in 7.31.
timestamp: DateTimeThe time the Client sent the request. The parameter is only used for diagnostic and logging purposes in the server.
request_handle: u32A requestHandle associated with the request. This client defined handle can be used to cancel the request. It is also returned in the response.
return_diagnostics: DiagnosticBitsA bit mask that identifies the types of vendor-specific diagnostics to be returned in diagnosticInfo response parameters. The value of this parameter may consist of zero, one or more of the following values. No value indicates that diagnostics are not to be returned.
Bit Value Diagnostics to return 0x0000 0001 ServiceLevel / SymbolicId 0x0000 0002 ServiceLevel / LocalizedText 0x0000 0004 ServiceLevel / AdditionalInfo 0x0000 0008 ServiceLevel / Inner StatusCode 0x0000 0010 ServiceLevel / Inner Diagnostics 0x0000 0020 OperationLevel / SymbolicId 0x0000 0040 OperationLevel / LocalizedText 0x0000 0080 OperationLevel / AdditionalInfo 0x0000 0100 OperationLevel / Inner StatusCode 0x0000 0200 OperationLevel / Inner Diagnostics
Each of these values is composed of two components, level and type, as described below. If none are requested, as indicated by a 0 value, or if no diagnostic information was encountered in processing of the request, then diagnostics information is not returned.
Level: ServiceLevel return diagnostics in the diagnosticInfo of the Service. OperationLevel return diagnostics in the diagnosticInfo defined for individual operations requested in the Service.
Type: SymbolicId return a namespace-qualified, symbolic identifier for an error or condition. The maximum length of this identifier is 32 characters. LocalizedText return up to 256 bytes of localized text that describes the symbolic id. AdditionalInfo return a byte string that contains additional diagnostic information, such as a memory image. The format of this byte string is vendor-specific, and may depend on the type of error or condition encountered. InnerStatusCode return the inner StatusCode associated with the operation or Service. InnerDiagnostics return the inner diagnostic info associated with the operation or Service. The contents of the inner diagnostic info structure are determined by other bits in the mask. Note that setting this bit could cause multiple levels of nested diagnostic info structures to be returned.
audit_entry_id: UAStringAn identifier that identifies the Client’s security audit log entry associated with this request. An empty string value means that this parameter is not used. The AuditEntryId typically contains who initiated the action and from where it was initiated. The AuditEventId is included in the AuditEvent to allow human readers to correlate an Event with the initiating action. More details of the Audit mechanisms are defined in 6.2 and in Part 3.
timeout_hint: u32This timeout in milliseconds is used in the Client side Communication Stack to set the timeout on a per-call base. For a Server this timeout is only a hint and can be used to cancel long running operations to free resources. If the Server detects a timeout, he can cancel the operation by sending the Service result BadTimeout. The Server should wait at minimum the timeout after he received the request before cancelling the operation. The Server shall check the timeoutHint parameter of a PublishRequest before processing a PublishResponse. If the request timed out, a BadTimeout Service result is sent and another PublishRequest is used. The value of 0 indicates no timeout.
additional_header: ExtensionObjectReserved for future use. Applications that do not understand the header should ignore it.
Implementations
impl RequestHeader[src]
pub fn new(
authentication_token: &NodeId,
timestamp: &DateTime,
request_handle: u32
) -> RequestHeader[src]
authentication_token: &NodeId,
timestamp: &DateTime,
request_handle: u32
) -> RequestHeader
pub fn dummy() -> RequestHeader[src]
Trait Implementations
impl BinaryEncoder<RequestHeader> for RequestHeader[src]
fn byte_len(&self) -> usize[src]
fn encode<S>(&self, stream: &mut S) -> Result<usize, StatusCode> where
S: Write, [src]
S: Write,
fn decode<S>(
stream: &mut S,
decoding_limits: &DecodingLimits
) -> Result<RequestHeader, StatusCode> where
S: Read, [src]
stream: &mut S,
decoding_limits: &DecodingLimits
) -> Result<RequestHeader, StatusCode> where
S: Read,
fn encode_to_vec(&self) -> Vec<u8>[src]
impl Clone for RequestHeader[src]
fn clone(&self) -> RequestHeader[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for RequestHeader[src]
impl PartialEq<RequestHeader> for RequestHeader[src]
fn eq(&self, other: &RequestHeader) -> bool[src]
fn ne(&self, other: &RequestHeader) -> bool[src]
impl StructuralPartialEq for RequestHeader[src]
Auto Trait Implementations
impl RefUnwindSafe for RequestHeader
impl Send for RequestHeader
impl Sync for RequestHeader
impl Unpin for RequestHeader
impl UnwindSafe for RequestHeader
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,