pub enum VoiceAdmission {
Accepted,
Dropped,
}Expand description
What became of a tunnelled voice packet.
Variants§
Accepted
Dropped
The queue was too deep for the packet to still be worth hearing. Counted rather than silent (R6), and never a reason to end the connection.
Trait Implementations§
Source§impl Clone for VoiceAdmission
impl Clone for VoiceAdmission
Source§fn clone(&self) -> VoiceAdmission
fn clone(&self) -> VoiceAdmission
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 VoiceAdmission
impl Debug for VoiceAdmission
Source§impl PartialEq for VoiceAdmission
impl PartialEq for VoiceAdmission
impl Copy for VoiceAdmission
impl Eq for VoiceAdmission
impl StructuralPartialEq for VoiceAdmission
Auto Trait Implementations§
impl Freeze for VoiceAdmission
impl RefUnwindSafe for VoiceAdmission
impl Send for VoiceAdmission
impl Sync for VoiceAdmission
impl Unpin for VoiceAdmission
impl UnwindSafe for VoiceAdmission
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