Struct opcua_types::service_types::CreateSessionResponse
[−]
[src]
pub struct CreateSessionResponse {
pub response_header: ResponseHeader,
pub session_id: NodeId,
pub authentication_token: NodeId,
pub revised_session_timeout: Double,
pub server_nonce: ByteString,
pub server_certificate: ByteString,
pub server_endpoints: Option<Vec<EndpointDescription>>,
pub server_software_certificates: Option<Vec<SignedSoftwareCertificate>>,
pub server_signature: SignatureData,
pub max_request_message_size: UInt32,
}Creates a new session with the server.
Fields
response_header: ResponseHeader
session_id: NodeId
authentication_token: NodeId
revised_session_timeout: Double
server_nonce: ByteString
server_certificate: ByteString
server_endpoints: Option<Vec<EndpointDescription>>
server_software_certificates: Option<Vec<SignedSoftwareCertificate>>
server_signature: SignatureData
max_request_message_size: UInt32
Trait Implementations
impl Debug for CreateSessionResponse[src]
impl Clone for CreateSessionResponse[src]
fn clone(&self) -> CreateSessionResponse[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 CreateSessionResponse[src]
fn eq(&self, __arg_0: &CreateSessionResponse) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &CreateSessionResponse) -> bool[src]
This method tests for !=.
impl MessageInfo for CreateSessionResponse[src]
impl BinaryEncoder<CreateSessionResponse> for CreateSessionResponse[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.