Struct sdp::media_description::RangedPort[][src]

pub struct RangedPort {
    pub value: isize,
    pub range: Option<isize>,
}

RangedPort supports special format for the media field “m=” port value. If it may be necessary to specify multiple transport ports, the protocol allows to write it as: / where number of ports is a an offsetting range.

Fields

value: isizerange: Option<isize>

Trait Implementations

impl Debug for RangedPort[src]

impl Default for RangedPort[src]

impl Display for RangedPort[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,