pub struct ServerSessionKey {
pub session_key: u32,
}Expand description
Replied by the server to the client when receiving a ClientAuth request
element. The key must be a new session
Fields§
§session_key: u32The server session key, should not be the same as the login session key.
Trait Implementations§
Source§impl Clone for ServerSessionKey
impl Clone for ServerSessionKey
Source§fn clone(&self) -> ServerSessionKey
fn clone(&self) -> ServerSessionKey
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 moreSource§impl Debug for ServerSessionKey
impl Debug for ServerSessionKey
Auto Trait Implementations§
impl Freeze for ServerSessionKey
impl RefUnwindSafe for ServerSessionKey
impl Send for ServerSessionKey
impl Sync for ServerSessionKey
impl Unpin for ServerSessionKey
impl UnwindSafe for ServerSessionKey
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