pub struct ClientSessionKey {
pub session_key: u32,
}Expand description
Sent by the client on login (and apparently randomly after login) to return
the session key that was sent by the server in the ServerSessionKey
reply.
Fields§
§session_key: u32The server session key
Implementations§
Trait Implementations§
Source§impl Clone for ClientSessionKey
impl Clone for ClientSessionKey
Source§fn clone(&self) -> ClientSessionKey
fn clone(&self) -> ClientSessionKey
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 ClientSessionKey
impl Debug for ClientSessionKey
Source§impl SimpleElement for ClientSessionKey
impl SimpleElement for ClientSessionKey
Source§impl TopElement for ClientSessionKey
impl TopElement for ClientSessionKey
Source§const LEN: ElementLength
const LEN: ElementLength
The type of length that prefixes the element’s content and describe
how much space is taken by the element.
Auto Trait Implementations§
impl Freeze for ClientSessionKey
impl RefUnwindSafe for ClientSessionKey
impl Send for ClientSessionKey
impl Sync for ClientSessionKey
impl Unpin for ClientSessionKey
impl UnwindSafe for ClientSessionKey
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