pub struct ServerboundPlayChatSessionUpdate {
pub session_uuid: Uuid,
pub expire_time: i64,
pub public_key: Vec<u8>,
pub signature: Vec<u8>,
}Fields§
§session_uuid: Uuid§expire_time: i64§public_key: Vec<u8>§signature: Vec<u8>Implementations§
Source§impl ServerboundPlayChatSessionUpdate
impl ServerboundPlayChatSessionUpdate
Sourcepub const PACKET_ID: i32 = 8i32
pub const PACKET_ID: i32 = 8i32
The packet ID used by the registry to dispatch this packet.
This value is declared via #[packet(id = N)] and corresponds to
the VarInt packet ID read/written by the framing layer. The struct’s
own Encode/Decode does NOT include this ID — it only encodes the
packet’s payload fields.
Trait Implementations§
Source§impl Clone for ServerboundPlayChatSessionUpdate
impl Clone for ServerboundPlayChatSessionUpdate
Source§fn clone(&self) -> ServerboundPlayChatSessionUpdate
fn clone(&self) -> ServerboundPlayChatSessionUpdate
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 Default for ServerboundPlayChatSessionUpdate
impl Default for ServerboundPlayChatSessionUpdate
Source§fn default() -> ServerboundPlayChatSessionUpdate
fn default() -> ServerboundPlayChatSessionUpdate
Returns the “default value” for a type. Read more
Source§impl EncodedSize for ServerboundPlayChatSessionUpdate
impl EncodedSize for ServerboundPlayChatSessionUpdate
fn encoded_size(&self) -> usize
Source§impl PartialEq for ServerboundPlayChatSessionUpdate
impl PartialEq for ServerboundPlayChatSessionUpdate
Source§fn eq(&self, other: &ServerboundPlayChatSessionUpdate) -> bool
fn eq(&self, other: &ServerboundPlayChatSessionUpdate) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ServerboundPlayChatSessionUpdate
Auto Trait Implementations§
impl Freeze for ServerboundPlayChatSessionUpdate
impl RefUnwindSafe for ServerboundPlayChatSessionUpdate
impl Send for ServerboundPlayChatSessionUpdate
impl Sync for ServerboundPlayChatSessionUpdate
impl Unpin for ServerboundPlayChatSessionUpdate
impl UnsafeUnpin for ServerboundPlayChatSessionUpdate
impl UnwindSafe for ServerboundPlayChatSessionUpdate
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