Struct gstreamer_sdp::sdp_message::SDPMessage[][src]

pub struct SDPMessage(_);

Implementations

impl SDPMessage[src]

pub fn new() -> SDPMessage[src]

pub fn parse_buffer(data: &[u8]) -> Result<Self, BoolError>[src]

pub fn parse_uri(uri: &str) -> Result<Self, BoolError>[src]

Methods from Deref<Target = SDPMessageRef>

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 Clone for SDPMessage[src]

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

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for SDPMessage[src]

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

Formats the value using the given formatter. Read more

impl Default for SDPMessage[src]

fn default() -> Self[src]

Returns the “default value” for a type. Read more

impl Deref for SDPMessage[src]

type Target = SDPMessageRef

The resulting type after dereferencing.

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

Dereferences the value.

impl DerefMut for SDPMessage[src]

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

Mutably dereferences the value.

impl Display for SDPMessage[src]

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

Formats the value using the given formatter. Read more

impl Hash for SDPMessage[src]

fn hash<__H: Hasher>(&self, state: &mut __H)[src]

Feeds this value into the given Hasher. Read more

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given Hasher. Read more

impl Ord for SDPMessage[src]

fn cmp(&self, other: &SDPMessage) -> Ordering[src]

This method returns an Ordering between self and other. Read more

#[must_use]
fn max(self, other: Self) -> Self
1.21.0[src]

Compares and returns the maximum of two values. Read more

#[must_use]
fn min(self, other: Self) -> Self
1.21.0[src]

Compares and returns the minimum of two values. Read more

#[must_use]
fn clamp(self, min: Self, max: Self) -> Self
1.50.0[src]

Restrict a value to a certain interval. Read more

impl PartialEq<SDPMessage> for SDPMessage[src]

fn eq(&self, other: &SDPMessage) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, other: &SDPMessage) -> bool[src]

This method tests for !=.

impl PartialOrd<SDPMessage> for SDPMessage[src]

fn partial_cmp(&self, other: &SDPMessage) -> Option<Ordering>[src]

This method returns an ordering between self and other values if one exists. Read more

#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl StaticType for SDPMessage[src]

fn static_type() -> Type[src]

Returns the type identifier of Self.

impl Eq for SDPMessage[src]

impl Send for SDPMessage[src]

impl StructuralEq for SDPMessage[src]

impl StructuralPartialEq for SDPMessage[src]

impl Sync for SDPMessage[src]

Auto Trait Implementations

impl RefUnwindSafe for SDPMessage

impl Unpin for SDPMessage

impl UnwindSafe for SDPMessage

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

type Owned = T

The resulting type after obtaining ownership.

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

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

pub fn clone_into(&self, target: &mut T)[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<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.

impl<'a, T, C> FromValueOptional<'a> for T where
    C: ValueTypeChecker<Error = ValueTypeMismatchOrNoneError>,
    T: FromValue<'a, Checker = C>, 
[src]