pub enum BandwidthType {
Ct,
As,
Rr,
Rs,
}Expand description
Type of the Bandwidth value.
See RFC 8866 Section 5.8 for more details.
Variants§
Ct
Conference total - maximum bandwidth a session will use
As
Application Specific maximum bandwidth
Rr
Bandwidth assigned for RTCP reports by active receivers. See RFC 3890 Section 1.1.3
Rs
Bandwidth assigned for RTCP reports by active senders. See RFC 3890 Section 1.1.3
Implementations§
Trait Implementations§
Source§impl Clone for BandwidthType
impl Clone for BandwidthType
Source§fn clone(&self) -> BandwidthType
fn clone(&self) -> BandwidthType
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for BandwidthType
Source§impl Debug for BandwidthType
impl Debug for BandwidthType
Source§impl Display for BandwidthType
impl Display for BandwidthType
impl Eq for BandwidthType
Source§impl FromStr for BandwidthType
impl FromStr for BandwidthType
Source§impl PartialEq for BandwidthType
impl PartialEq for BandwidthType
impl StructuralPartialEq for BandwidthType
Auto Trait Implementations§
impl Freeze for BandwidthType
impl RefUnwindSafe for BandwidthType
impl Send for BandwidthType
impl Sync for BandwidthType
impl Unpin for BandwidthType
impl UnsafeUnpin for BandwidthType
impl UnwindSafe for BandwidthType
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