pub enum ProtoType {
Udp,
RtpAvp,
RtpSavp,
RtpSavpf,
Other(String),
}
Expand description
The Proto Type as it appears in the media line (m=
). It’s not a Copy
type since it supports
abstract types, not even defined in any RFC.
Variants§
Trait Implementations§
Source§impl Ord for ProtoType
impl Ord for ProtoType
Source§impl PartialOrd for ProtoType
impl PartialOrd for ProtoType
impl Eq for ProtoType
impl StructuralPartialEq for ProtoType
Auto Trait Implementations§
impl Freeze for ProtoType
impl RefUnwindSafe for ProtoType
impl Send for ProtoType
impl Sync for ProtoType
impl Unpin for ProtoType
impl UnwindSafe for ProtoType
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