#[non_exhaustive]pub enum StatsSelector {
None,
Sender(RTCRtpSenderId),
Receiver(RTCRtpReceiverId),
}Expand description
Selector for filtering statistics in get_stats().
This enum corresponds to the optional selector parameter in the
W3C WebRTC getStats() method. When provided, it filters the returned
statistics to only those relevant to the specified sender or receiver.
§W3C Reference
See The stats selection algorithm
§Variants
None- Return all statistics for the entire connectionSender- Return statistics for a specific RTP sender and referenced objectsReceiver- Return statistics for a specific RTP receiver and referenced objects
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
None
Gather stats for the whole connection.
Returns all available statistics objects including peer connection, transport, ICE candidates, codecs, data channels, and all RTP streams.
Sender(RTCRtpSenderId)
Gather stats for a specific RTP sender.
Returns:
- All
RTCOutboundRtpStreamStatsfor streams being sent by this sender - All stats objects referenced by those outbound streams (transport, codec, remote inbound stats, etc.)
Receiver(RTCRtpReceiverId)
Gather stats for a specific RTP receiver.
Returns:
- All
RTCInboundRtpStreamStatsfor streams being received by this receiver - All stats objects referenced by those inbound streams (transport, codec, remote outbound stats, etc.)
Auto Trait Implementations§
impl Freeze for StatsSelector
impl RefUnwindSafe for StatsSelector
impl Send for StatsSelector
impl Sync for StatsSelector
impl Unpin for StatsSelector
impl UnsafeUnpin for StatsSelector
impl UnwindSafe for StatsSelector
Blanket Implementations§
Source§impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
Source§type ArchivedMetadata = ()
type ArchivedMetadata = ()
The archived version of the pointer metadata for this type.
Source§fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata,
) -> <T as Pointee>::Metadata
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata
Converts some archived metadata to the pointer metadata for itself.
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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
Source§impl<T> LayoutRaw for T
impl<T> LayoutRaw for T
Source§fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
Returns the layout of the type.
Source§impl<T, N1, N2> Niching<NichedOption<T, N1>> for N2
impl<T, N1, N2> Niching<NichedOption<T, N1>> for N2
Source§unsafe fn is_niched(niched: *const NichedOption<T, N1>) -> bool
unsafe fn is_niched(niched: *const NichedOption<T, N1>) -> bool
Returns whether the given value has been niched. Read more
Source§fn resolve_niched(out: Place<NichedOption<T, N1>>)
fn resolve_niched(out: Place<NichedOption<T, N1>>)
Writes data to
out indicating that a T is niched.