#[repr(u8)]pub enum UdpMessageType {
Audio = 0,
Ping = 1,
}Expand description
UDP message type register (protobuf format).
REF: MumbleProtocol.h : enum class UDPMessageType : byte { Audio = 0, Ping = 1 }.
Variants§
Trait Implementations§
Source§impl Clone for UdpMessageType
impl Clone for UdpMessageType
Source§fn clone(&self) -> UdpMessageType
fn clone(&self) -> UdpMessageType
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 UdpMessageType
impl Debug for UdpMessageType
Source§impl From<UdpMessageType> for u8
impl From<UdpMessageType> for u8
Source§fn from(value: UdpMessageType) -> Self
fn from(value: UdpMessageType) -> Self
Converts to this type from the input type.
Source§impl PartialEq for UdpMessageType
impl PartialEq for UdpMessageType
impl Copy for UdpMessageType
impl Eq for UdpMessageType
impl StructuralPartialEq for UdpMessageType
Auto Trait Implementations§
impl Freeze for UdpMessageType
impl RefUnwindSafe for UdpMessageType
impl Send for UdpMessageType
impl Sync for UdpMessageType
impl Unpin for UdpMessageType
impl UnwindSafe for UdpMessageType
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