[][src]Enum basin2_protocol::packets::login::clientbound::LoginClientbound

pub enum LoginClientbound {
    LoginDisconnectPacket(LoginDisconnectPacket),
    HelloPacket(HelloPacket),
    GameProfilePacket(GameProfilePacket),
    LoginCompressionPacket(LoginCompressionPacket),
    CustomQueryPacket(CustomQueryPacket),
}

Variants

LoginDisconnectPacket(LoginDisconnectPacket)
HelloPacket(HelloPacket)
GameProfilePacket(GameProfilePacket)
LoginCompressionPacket(LoginCompressionPacket)
CustomQueryPacket(CustomQueryPacket)

Trait Implementations

impl Clone for LoginClientbound[src]

impl Debug for LoginClientbound[src]

impl From<CustomQueryPacket> for LoginClientbound[src]

impl From<GameProfilePacket> for LoginClientbound[src]

impl From<HelloPacket> for LoginClientbound[src]

impl From<LoginClientbound> for Login[src]

impl From<LoginClientbound> for Packet[src]

impl From<LoginCompressionPacket> for LoginClientbound[src]

impl From<LoginDisconnectPacket> for LoginClientbound[src]

impl PacketContainer for LoginClientbound[src]

impl PartialEq<LoginClientbound> for LoginClientbound[src]

impl StructuralPartialEq for LoginClientbound[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.