[][src]Struct mumble_protocol::control::msgs::Ping

pub struct Ping {
    pub unknown_fields: UnknownFields,
    pub cached_size: CachedSize,
    // some fields omitted
}

Fields

unknown_fields: UnknownFieldscached_size: CachedSize

Implementations

impl Ping[src]

pub fn new() -> Ping[src]

pub fn get_timestamp(&self) -> u64[src]

pub fn clear_timestamp(&mut self)[src]

pub fn has_timestamp(&self) -> bool[src]

pub fn set_timestamp(&mut self, v: u64)[src]

pub fn get_good(&self) -> u32[src]

pub fn clear_good(&mut self)[src]

pub fn has_good(&self) -> bool[src]

pub fn set_good(&mut self, v: u32)[src]

pub fn get_late(&self) -> u32[src]

pub fn clear_late(&mut self)[src]

pub fn has_late(&self) -> bool[src]

pub fn set_late(&mut self, v: u32)[src]

pub fn get_lost(&self) -> u32[src]

pub fn clear_lost(&mut self)[src]

pub fn has_lost(&self) -> bool[src]

pub fn set_lost(&mut self, v: u32)[src]

pub fn get_resync(&self) -> u32[src]

pub fn clear_resync(&mut self)[src]

pub fn has_resync(&self) -> bool[src]

pub fn set_resync(&mut self, v: u32)[src]

pub fn get_udp_packets(&self) -> u32[src]

pub fn clear_udp_packets(&mut self)[src]

pub fn has_udp_packets(&self) -> bool[src]

pub fn set_udp_packets(&mut self, v: u32)[src]

pub fn get_tcp_packets(&self) -> u32[src]

pub fn clear_tcp_packets(&mut self)[src]

pub fn has_tcp_packets(&self) -> bool[src]

pub fn set_tcp_packets(&mut self, v: u32)[src]

pub fn get_udp_ping_avg(&self) -> f32[src]

pub fn clear_udp_ping_avg(&mut self)[src]

pub fn has_udp_ping_avg(&self) -> bool[src]

pub fn set_udp_ping_avg(&mut self, v: f32)[src]

pub fn get_udp_ping_var(&self) -> f32[src]

pub fn clear_udp_ping_var(&mut self)[src]

pub fn has_udp_ping_var(&self) -> bool[src]

pub fn set_udp_ping_var(&mut self, v: f32)[src]

pub fn get_tcp_ping_avg(&self) -> f32[src]

pub fn clear_tcp_ping_avg(&mut self)[src]

pub fn has_tcp_ping_avg(&self) -> bool[src]

pub fn set_tcp_ping_avg(&mut self, v: f32)[src]

pub fn get_tcp_ping_var(&self) -> f32[src]

pub fn clear_tcp_ping_var(&mut self)[src]

pub fn has_tcp_ping_var(&self) -> bool[src]

pub fn set_tcp_ping_var(&mut self, v: f32)[src]

Trait Implementations

impl Clear for Ping[src]

impl Clone for Ping[src]

impl Debug for Ping[src]

impl Default for Ping[src]

impl<'a> Default for &'a Ping[src]

impl<Dst: VoicePacketDst> From<Ping> for ControlPacket<Dst>[src]

impl From<Ping> for RawControlPacket[src]

impl Message for Ping[src]

impl PartialEq<Ping> for Ping[src]

impl ProtobufValue for Ping[src]

impl StructuralPartialEq for Ping[src]

impl<'_> TryFrom<&'_ [u8]> for Ping[src]

type Error = ProtobufError

The type returned in the event of a conversion error.

impl TryFrom<Bytes> for Ping[src]

type Error = ProtobufError

The type returned in the event of a conversion error.

impl TryFrom<RawControlPacket> for Ping[src]

type Error = ProtobufError

The type returned in the event of a conversion error.

Auto Trait Implementations

impl RefUnwindSafe for Ping

impl Send for Ping

impl Sync for Ping

impl Unpin for Ping

impl UnwindSafe for Ping

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.