Struct gstreamer_sdp::sdp_message::SDPMessageRef[][src]

#[repr(transparent)]
pub struct SDPMessageRef(_);

Implementations

impl SDPMessageRef[src]

pub fn add_attribute(&mut self, key: &str, value: Option<&str>)[src]

pub fn add_email(&mut self, email: &str)[src]

pub fn add_media(&mut self, media: SDPMedia)[src]

pub fn add_phone(&mut self, phone: &str)[src]

pub fn add_time(&mut self, start: &str, stop: &str, repeat: &[&str])[src]

pub fn add_zone(&mut self, adj_time: &str, typed_time: &str)[src]

pub fn as_text(&self) -> Result<String, BoolError>[src]

pub fn attributes_len(&self) -> u32[src]

pub fn attributes_to_caps(&self, caps: &mut CapsRef) -> Result<(), BoolError>[src]

pub fn bandwidths_len(&self) -> u32[src]

pub fn dump(&self)[src]

pub fn emails_len(&self) -> u32[src]

pub fn attribute(&self, idx: u32) -> Option<&SDPAttribute>[src]

pub fn attribute_val(&self, key: &str) -> Option<&str>[src]

pub fn attribute_val_n(&self, key: &str, nth: u32) -> Option<&str>[src]

pub fn bandwidth(&self, idx: u32) -> Option<&SDPBandwidth>[src]

pub fn connection(&self) -> Option<&SDPConnection>[src]

pub fn email(&self, idx: u32) -> Option<&str>[src]

pub fn information(&self) -> Option<&str>[src]

pub fn key(&self) -> Option<&SDPKey>[src]

pub fn media(&self, idx: u32) -> Option<&SDPMediaRef>[src]

pub fn media_mut(&mut self, idx: u32) -> Option<&mut SDPMediaRef>[src]

pub fn origin(&self) -> Option<&SDPOrigin>[src]

pub fn phone(&self, idx: u32) -> Option<&str>[src]

pub fn session_name(&self) -> Option<&str>[src]

pub fn time(&self, idx: u32) -> Option<&SDPTime>[src]

pub fn uri(&self) -> Option<&str>[src]

pub fn version(&self) -> Option<&str>[src]

pub fn zone(&self, idx: u32) -> Option<&SDPZone>[src]

pub fn insert_attribute(
    &mut self,
    idx: Option<u32>,
    attr: SDPAttribute
) -> Result<(), BoolError>
[src]

pub fn insert_bandwidth(
    &mut self,
    idx: Option<u32>,
    bw: SDPBandwidth
) -> Result<(), BoolError>
[src]

pub fn insert_email(
    &mut self,
    idx: Option<u32>,
    email: &str
) -> Result<(), BoolError>
[src]

pub fn insert_phone(
    &mut self,
    idx: Option<u32>,
    phone: &str
) -> Result<(), BoolError>
[src]

pub fn insert_time(
    &mut self,
    idx: Option<u32>,
    time: SDPTime
) -> Result<(), BoolError>
[src]

pub fn insert_zone(
    &mut self,
    idx: Option<u32>,
    zone: SDPZone
) -> Result<(), BoolError>
[src]

pub fn medias_len(&self) -> u32[src]

pub fn phones_len(&self) -> u32[src]

pub fn remove_attribute(&mut self, idx: u32) -> Result<(), BoolError>[src]

pub fn remove_bandwidth(&mut self, idx: u32) -> Result<(), BoolError>[src]

pub fn remove_email(&mut self, idx: u32) -> Result<(), BoolError>[src]

pub fn remove_phone(&mut self, idx: u32) -> Result<(), BoolError>[src]

pub fn remove_time(&mut self, idx: u32) -> Result<(), BoolError>[src]

pub fn remove_zone(&mut self, idx: u32) -> Result<(), BoolError>[src]

pub fn replace_attribute(
    &mut self,
    idx: u32,
    attr: SDPAttribute
) -> Result<(), BoolError>
[src]

pub fn replace_bandwidth(
    &mut self,
    idx: u32,
    bw: SDPBandwidth
) -> Result<(), BoolError>
[src]

pub fn replace_email(&mut self, idx: u32, email: &str) -> Result<(), BoolError>[src]

pub fn replace_phone(&mut self, idx: u32, phone: &str) -> Result<(), BoolError>[src]

pub fn replace_time(&mut self, idx: u32, time: SDPTime) -> Result<(), BoolError>[src]

pub fn replace_zone(&mut self, idx: u32, zone: SDPZone) -> Result<(), BoolError>[src]

pub fn set_connection(
    &mut self,
    nettype: &str,
    addrtype: &str,
    address: &str,
    ttl: u32,
    addr_number: u32
)
[src]

pub fn set_information(&mut self, information: &str)[src]

pub fn set_key(&mut self, type_: &str, data: &str)[src]

pub fn set_origin(
    &mut self,
    username: &str,
    sess_id: &str,
    sess_version: &str,
    nettype: &str,
    addrtype: &str,
    addr: &str
)
[src]

pub fn set_session_name(&mut self, session_name: &str)[src]

pub fn set_uri(&mut self, uri: &str)[src]

pub fn set_version(&mut self, version: &str)[src]

pub fn times_len(&self) -> u32[src]

pub fn zones_len(&self) -> u32[src]

pub fn as_uri(&self, scheme: &str) -> Result<String, BoolError>[src]

pub fn attributes(&self) -> AttributesIter<'_>

Notable traits for AttributesIter<'a>

impl<'a> Iterator for AttributesIter<'a> type Item = &'a SDPAttribute;
[src]

pub fn bandwidths(&self) -> BandwidthsIter<'_>

Notable traits for BandwidthsIter<'a>

impl<'a> Iterator for BandwidthsIter<'a> type Item = &'a SDPBandwidth;
[src]

pub fn emails(&self) -> EmailsIter<'_>

Notable traits for EmailsIter<'a>

impl<'a> Iterator for EmailsIter<'a> type Item = &'a str;
[src]

pub fn medias(&self) -> MediasIter<'_>

Notable traits for MediasIter<'a>

impl<'a> Iterator for MediasIter<'a> type Item = &'a SDPMediaRef;
[src]

pub fn medias_mut(&mut self) -> MediasIterMut<'_>

Notable traits for MediasIterMut<'a>

impl<'a> Iterator for MediasIterMut<'a> type Item = &'a mut SDPMediaRef;
[src]

pub fn phones(&self) -> PhonesIter<'_>

Notable traits for PhonesIter<'a>

impl<'a> Iterator for PhonesIter<'a> type Item = &'a str;
[src]

pub fn times(&self) -> TimesIter<'_>

Notable traits for TimesIter<'a>

impl<'a> Iterator for TimesIter<'a> type Item = &'a SDPTime;
[src]

pub fn zones(&self) -> ZonesIter<'_>

Notable traits for ZonesIter<'a>

impl<'a> Iterator for ZonesIter<'a> type Item = &'a SDPZone;
[src]

Trait Implementations

impl Borrow<SDPMessageRef> for SDPMessage[src]

fn borrow(&self) -> &SDPMessageRef[src]

Immutably borrows from an owned value. Read more

impl BorrowMut<SDPMessageRef> for SDPMessage[src]

fn borrow_mut(&mut self) -> &mut SDPMessageRef[src]

Mutably borrows from an owned value. Read more

impl Debug for SDPMessageRef[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Display for SDPMessageRef[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl<'a> FromValue<'a> for &'a SDPMessageRef[src]

type Checker = GenericValueTypeOrNoneChecker<Self>

Value type checker.

unsafe fn from_value(value: &'a Value) -> Self[src]

Get the contained value from a Value. Read more

impl StaticType for SDPMessageRef[src]

fn static_type() -> Type[src]

Returns the type identifier of Self.

impl ToOwned for SDPMessageRef[src]

type Owned = SDPMessage

The resulting type after obtaining ownership.

fn to_owned(&self) -> SDPMessage[src]

Creates owned data from borrowed data, usually by cloning. Read more

fn clone_into(&self, target: &mut Self::Owned)[src]

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

impl ToValue for SDPMessageRef[src]

fn to_value(&self) -> Value[src]

Convert a value to a Value.

fn value_type(&self) -> Type[src]

Returns the type identifer of self. Read more

impl ToValueOptional for SDPMessageRef[src]

fn to_value_optional(s: Option<&Self>) -> Value[src]

Convert an Option to a Value.

impl Send for SDPMessageRef[src]

impl Sync for SDPMessageRef[src]

Auto Trait Implementations

impl RefUnwindSafe for SDPMessageRef

impl Unpin for SDPMessageRef

impl UnwindSafe for SDPMessageRef

Blanket Implementations

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

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

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

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

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

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

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

pub fn from(t: T) -> T[src]

Performs the conversion.

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

pub fn into(self) -> U[src]

Performs the conversion.

impl<T> ToSendValue for T where
    T: Send + ToValue + ?Sized
[src]

pub fn to_send_value(&self) -> SendValue[src]

Returns a SendValue clone of self.

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

pub default fn to_string(&self) -> String[src]

Converts the given value to a String. Read more

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.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

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.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.