pub enum WorkerLogTag {
Show 13 variants
Info,
Ice,
Dtls,
Rtp,
Srtp,
Rtcp,
Rtx,
Bwe,
Score,
Simulcast,
Svc,
Sctp,
Message,
}
Expand description
Log tags for debugging. Check the meaning of each available tag in the Debugging documentation.
Variants§
Info
Logs about software/library versions, configuration and process information.
Ice
Logs about ICE.
Dtls
Logs about DTLS.
Rtp
Logs about RTP.
Srtp
Logs about SRTP encryption/decryption.
Rtcp
Logs about RTCP.
Rtx
Logs about RTP retransmission, including NACK/PLI/FIR.
Bwe
Logs about transport bandwidth estimation.
Score
Logs related to the scores of Producers and Consumers.
Simulcast
Logs about video simulcast.
Svc
Logs about video SVC.
Sctp
Logs about SCTP (DataChannel).
Message
Logs about messages (can be SCTP messages or direct messages).
Trait Implementations§
Source§impl Clone for WorkerLogTag
impl Clone for WorkerLogTag
Source§fn clone(&self) -> WorkerLogTag
fn clone(&self) -> WorkerLogTag
Returns a copy 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 WorkerLogTag
impl Debug for WorkerLogTag
Source§impl Hash for WorkerLogTag
impl Hash for WorkerLogTag
Source§impl Ord for WorkerLogTag
impl Ord for WorkerLogTag
Source§fn cmp(&self, other: &WorkerLogTag) -> Ordering
fn cmp(&self, other: &WorkerLogTag) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for WorkerLogTag
impl PartialEq for WorkerLogTag
Source§impl PartialOrd for WorkerLogTag
impl PartialOrd for WorkerLogTag
Source§impl Serialize for WorkerLogTag
impl Serialize for WorkerLogTag
impl Copy for WorkerLogTag
impl Eq for WorkerLogTag
impl StructuralPartialEq for WorkerLogTag
Auto Trait Implementations§
impl Freeze for WorkerLogTag
impl RefUnwindSafe for WorkerLogTag
impl Send for WorkerLogTag
impl Sync for WorkerLogTag
impl Unpin for WorkerLogTag
impl UnwindSafe for WorkerLogTag
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