pub struct Bandwidth {
pub bwtype: String,
pub bandwidth: u64,
}
Expand description
Bandwidth information for the session or media.
See RFC 4566 Section 5.8 for more details.
Fields§
§bwtype: String
Bandwidth type, usually “CT” or “AS”.
bandwidth: u64
Bandwidth.
Trait Implementations§
impl Eq for Bandwidth
impl StructuralPartialEq for Bandwidth
Auto Trait Implementations§
impl Freeze for Bandwidth
impl RefUnwindSafe for Bandwidth
impl Send for Bandwidth
impl Sync for Bandwidth
impl Unpin for Bandwidth
impl UnwindSafe for Bandwidth
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