Enum wisp_mux::PacketType
source · pub enum PacketType {
Connect(ConnectPacket),
Data(Bytes),
Continue(ContinuePacket),
Close(ClosePacket),
}
Expand description
Type of packet recieved.
Variants§
Connect(ConnectPacket)
Connect packet.
Data(Bytes)
Data packet.
Continue(ContinuePacket)
Continue packet.
Close(ClosePacket)
Close packet.
Implementations§
Trait Implementations§
source§impl Clone for PacketType
impl Clone for PacketType
source§fn clone(&self) -> PacketType
fn clone(&self) -> PacketType
Returns a copy 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 PacketType
impl Debug for PacketType
source§impl From<PacketType> for Bytes
impl From<PacketType> for Bytes
source§fn from(packet: PacketType) -> Self
fn from(packet: PacketType) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !Freeze for PacketType
impl RefUnwindSafe for PacketType
impl Send for PacketType
impl Sync for PacketType
impl Unpin for PacketType
impl UnwindSafe for PacketType
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