#[repr(i32)]pub enum EUdpPacketType {
Invalid = 0,
ChallengeReq = 1,
Challenge = 2,
Connect = 3,
Accept = 4,
Disconnect = 5,
Data = 6,
Datagram = 7,
Max = 8,
}Variants§
Invalid = 0
ChallengeReq = 1
Challenge = 2
Connect = 3
Accept = 4
Disconnect = 5
Data = 6
Datagram = 7
Max = 8
Implementations§
Trait Implementations§
Source§impl Clone for EUdpPacketType
impl Clone for EUdpPacketType
Source§fn clone(&self) -> EUdpPacketType
fn clone(&self) -> EUdpPacketType
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 Debug for EUdpPacketType
impl Debug for EUdpPacketType
Source§impl Hash for EUdpPacketType
impl Hash for EUdpPacketType
Source§impl PartialEq for EUdpPacketType
impl PartialEq for EUdpPacketType
impl Copy for EUdpPacketType
impl Eq for EUdpPacketType
impl StructuralPartialEq for EUdpPacketType
Auto Trait Implementations§
impl Freeze for EUdpPacketType
impl RefUnwindSafe for EUdpPacketType
impl Send for EUdpPacketType
impl Sync for EUdpPacketType
impl Unpin for EUdpPacketType
impl UnsafeUnpin for EUdpPacketType
impl UnwindSafe for EUdpPacketType
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