[−][src]Struct mumble_protocol::ping::PongPacket
A pong packet sent to the client in reply to a previously received PingPacket.
Fields
id: u64Opaque, client-generated id.
Should match the value in the corresponding PingPacket.
version: u32Server version. E.g. 0x010300 for 1.3.0.
users: u32Current amount of users connected to the server.
max_users: u32Configured limit on the amount of users which can be connected to the server.
bandwidth: u32Maximum bandwidth for server-bound speech per client in bits per second
Trait Implementations
impl Clone for PongPacket[src]
fn clone(&self) -> PongPacket[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for PongPacket[src]
impl From<PongPacket> for [u8; 24][src]
fn from(packet: PongPacket) -> Self[src]
impl PartialEq<PongPacket> for PongPacket[src]
fn eq(&self, other: &PongPacket) -> bool[src]
fn ne(&self, other: &PongPacket) -> bool[src]
impl StructuralPartialEq for PongPacket[src]
impl<'_> TryFrom<&'_ [u8]> for PongPacket[src]
Auto Trait Implementations
impl RefUnwindSafe for PongPacket
impl Send for PongPacket
impl Sync for PongPacket
impl Unpin for PongPacket
impl UnwindSafe for PongPacket
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,