[][src]Struct libsdp::SdpOffer

pub struct SdpOffer {
    pub version: SdpVersion,
    pub origin: SdpOrigin,
    pub name: SdpSessionName,
    pub optional: Vec<SdpOptionalAttribute>,
    pub attributes: Vec<SdpAttribute>,
    pub media: Vec<SdpMedia>,
}

A Single Sdp Message

Fields

version: SdpVersionorigin: SdpOriginname: SdpSessionNameoptional: Vec<SdpOptionalAttribute>attributes: Vec<SdpAttribute>media: Vec<SdpMedia>

Implementations

impl SdpOffer[src]

pub fn new<S: Into<String>>(origin: SdpOrigin, name: S) -> SdpOffer[src]

Generate a new offer from the origin and the session name name.

pub fn optional_attribute(self, attr: SdpOptionalAttribute) -> SdpOffer[src]

Add an optional attribute.

pub fn optional_attributes(self, attr: Vec<SdpOptionalAttribute>) -> SdpOffer[src]

Add all atributes removing all currently present.

pub fn attribute(self, attr: SdpAttribute) -> SdpOffer[src]

Add a single SdpAttribute to the attribute list.

pub fn attributes(self, attr: Vec<SdpAttribute>) -> SdpOffer[src]

Add all SdpAttributes removing any that might currently by present.

pub fn media(self, media: SdpMedia) -> SdpOffer[src]

Add a single SdpMedia. Represents a media line.

pub fn get_connection(&self) -> Option<SdpConnection>[src]

Get the global SDP connection if this offer has one. returns none if not present.

Trait Implementations

impl Clone for SdpOffer[src]

impl Debug for SdpOffer[src]

impl Display for SdpOffer[src]

impl PartialEq<SdpOffer> for SdpOffer[src]

impl StructuralPartialEq for SdpOffer[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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.