pub struct TcpLoginChannel<'a> {
pub cmd_id: u16,
pub conn_identity: u32,
pub effective_user_id: u64,
pub client_sig: &'a [u8],
}Expand description
Channel-specific login identity. Platform and broker login share the same body shape, but these fields intentionally differ.
Fields§
§cmd_id: u16§conn_identity: u32§effective_user_id: u64§client_sig: &'a [u8]Implementations§
Trait Implementations§
Source§impl<'a> Clone for TcpLoginChannel<'a>
impl<'a> Clone for TcpLoginChannel<'a>
Source§fn clone(&self) -> TcpLoginChannel<'a>
fn clone(&self) -> TcpLoginChannel<'a>
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<'a> Debug for TcpLoginChannel<'a>
impl<'a> Debug for TcpLoginChannel<'a>
impl<'a> Copy for TcpLoginChannel<'a>
Auto Trait Implementations§
impl<'a> Freeze for TcpLoginChannel<'a>
impl<'a> RefUnwindSafe for TcpLoginChannel<'a>
impl<'a> Send for TcpLoginChannel<'a>
impl<'a> Sync for TcpLoginChannel<'a>
impl<'a> Unpin for TcpLoginChannel<'a>
impl<'a> UnsafeUnpin for TcpLoginChannel<'a>
impl<'a> UnwindSafe for TcpLoginChannel<'a>
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