#[repr(C)]pub struct UA_CreateSessionResponse {
pub responseHeader: UA_ResponseHeader,
pub sessionId: UA_NodeId,
pub authenticationToken: UA_NodeId,
pub revisedSessionTimeout: UA_Double,
pub serverNonce: UA_ByteString,
pub serverCertificate: UA_ByteString,
pub serverEndpointsSize: usize,
pub serverEndpoints: *mut UA_EndpointDescription,
pub serverSoftwareCertificatesSize: usize,
pub serverSoftwareCertificates: *mut UA_SignedSoftwareCertificate,
pub serverSignature: UA_SignatureData,
pub maxRequestMessageSize: UA_UInt32,
}Fields§
§responseHeader: UA_ResponseHeader§sessionId: UA_NodeId§authenticationToken: UA_NodeId§revisedSessionTimeout: UA_Double§serverNonce: UA_ByteString§serverCertificate: UA_ByteString§serverEndpointsSize: usize§serverEndpoints: *mut UA_EndpointDescription§serverSoftwareCertificatesSize: usize§serverSoftwareCertificates: *mut UA_SignedSoftwareCertificate§serverSignature: UA_SignatureData§maxRequestMessageSize: UA_UInt32Trait Implementations§
Source§impl Clone for UA_CreateSessionResponse
impl Clone for UA_CreateSessionResponse
Source§fn clone(&self) -> UA_CreateSessionResponse
fn clone(&self) -> UA_CreateSessionResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for UA_CreateSessionResponse
Auto Trait Implementations§
impl Freeze for UA_CreateSessionResponse
impl RefUnwindSafe for UA_CreateSessionResponse
impl !Send for UA_CreateSessionResponse
impl !Sync for UA_CreateSessionResponse
impl Unpin for UA_CreateSessionResponse
impl UnwindSafe for UA_CreateSessionResponse
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more