pub enum ClientsidePacket {
Handshake(ClientsideHandshakePacket),
Status(ClientsideStatusPacket),
Login(ClientsideLoginPacket),
Configuration(ClientsideConfigurationPacket),
Play(ClientsidePlayPacket),
}Expand description
Универсальное перечисление Clientside пакетов
Variants§
Handshake(ClientsideHandshakePacket)
Status(ClientsideStatusPacket)
Login(ClientsideLoginPacket)
Configuration(ClientsideConfigurationPacket)
Play(ClientsidePlayPacket)
Trait Implementations§
Source§impl Clone for ClientsidePacket
impl Clone for ClientsidePacket
Source§fn clone(&self) -> ClientsidePacket
fn clone(&self) -> ClientsidePacket
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ClientsidePacket
impl RefUnwindSafe for ClientsidePacket
impl Send for ClientsidePacket
impl Sync for ClientsidePacket
impl Unpin for ClientsidePacket
impl UnsafeUnpin for ClientsidePacket
impl UnwindSafe for ClientsidePacket
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