Skip to main content

SDPMessage

Struct SDPMessage 

Source
pub struct SDPMessage { /* private fields */ }
Expand description

GLib type: Boxed type with copy-on-clone semantics.

Implementations§

Source§

impl SDPMessage

Source

pub fn as_ptr(&self) -> *mut GstSDPMessage

Return the inner pointer to the underlying C value.

Source

pub unsafe fn from_glib_ptr_borrow(ptr: &*mut GstSDPMessage) -> &Self

Borrows the underlying C value.

Source

pub unsafe fn from_glib_ptr_borrow_mut( ptr: &mut *mut GstSDPMessage, ) -> &mut Self

Borrows the underlying C value mutably.

Source§

impl SDPMessage

Source

pub fn new() -> SDPMessage

Source

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

Source

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

Methods from Deref<Target = SDPMessageRef>§

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

pub fn attributes_len(&self) -> u32

Source

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

Source

pub fn bandwidths_len(&self) -> u32

Source

pub fn dump(&self)

Source

pub fn emails_len(&self) -> u32

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

pub fn medias_len(&self) -> u32

Source

pub fn phones_len(&self) -> u32

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

pub fn times_len(&self) -> u32

Source

pub fn zones_len(&self) -> u32

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Trait Implementations§

Source§

impl Borrow<SDPMessageRef> for SDPMessage

Source§

fn borrow(&self) -> &SDPMessageRef

Immutably borrows from an owned value. Read more
Source§

impl BorrowMut<SDPMessageRef> for SDPMessage

Source§

fn borrow_mut(&mut self) -> &mut SDPMessageRef

Mutably borrows from an owned value. Read more
Source§

impl Clone for SDPMessage

Source§

fn clone(&self) -> Self

Copies the boxed type with the type-specific copy function.

1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for SDPMessage

Source§

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

Formats the value using the given formatter. Read more
Source§

impl Default for SDPMessage

Source§

fn default() -> Self

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

impl Deref for SDPMessage

Source§

type Target = SDPMessageRef

The resulting type after dereferencing.
Source§

fn deref(&self) -> &SDPMessageRef

Dereferences the value.
Source§

impl DerefMut for SDPMessage

Source§

fn deref_mut(&mut self) -> &mut SDPMessageRef

Mutably dereferences the value.
Source§

impl Display for SDPMessage

Source§

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

Formats the value using the given formatter. Read more
Source§

impl Eq for SDPMessage

Source§

impl From<SDPMessage> for Value

Source§

fn from(o: SDPMessage) -> Self

Converts to this type from the input type.
Source§

impl HasParamSpec for SDPMessage

Source§

type ParamSpec = ParamSpecBoxed

Source§

type SetValue = SDPMessage

Preferred value to be used as setter for the associated ParamSpec.
Source§

type BuilderFn = fn(&str) -> ParamSpecBoxedBuilder<'_, SDPMessage>

Source§

fn param_spec_builder() -> Self::BuilderFn

Source§

impl Hash for SDPMessage

Source§

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

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

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

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

impl Ord for SDPMessage

Source§

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

This method returns an Ordering between self and other. Read more
1.21.0 (const: unstable) · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 (const: unstable) · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 (const: unstable) · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl PartialEq for SDPMessage

Source§

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

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialOrd for SDPMessage

Source§

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

This method returns an ordering between self and other values if one exists. Read more
1.0.0 (const: unstable) · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 (const: unstable) · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 (const: unstable) · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 (const: unstable) · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl Send for SDPMessage

Source§

impl StaticType for SDPMessage

Source§

fn static_type() -> Type

Returns the type identifier of Self.
Source§

impl StructuralPartialEq for SDPMessage

Source§

impl Sync for SDPMessage

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> FromGlibContainerAsVec<<T as GlibPtrDefault>::GlibType, *const GList> for T

Source§

unsafe fn from_glib_none_num_as_vec(ptr: *const GList, num: usize) -> Vec<T>

Source§

unsafe fn from_glib_container_num_as_vec(_: *const GList, _: usize) -> Vec<T>

Source§

unsafe fn from_glib_full_num_as_vec(_: *const GList, _: usize) -> Vec<T>

Source§

impl<T> FromGlibContainerAsVec<<T as GlibPtrDefault>::GlibType, *const GPtrArray> for T

Source§

unsafe fn from_glib_none_num_as_vec(ptr: *const GPtrArray, num: usize) -> Vec<T>

Source§

unsafe fn from_glib_container_num_as_vec( _: *const GPtrArray, _: usize, ) -> Vec<T>

Source§

unsafe fn from_glib_full_num_as_vec(_: *const GPtrArray, _: usize) -> Vec<T>

Source§

impl<T> FromGlibContainerAsVec<<T as GlibPtrDefault>::GlibType, *const GSList> for T

Source§

unsafe fn from_glib_none_num_as_vec(ptr: *const GSList, num: usize) -> Vec<T>

Source§

unsafe fn from_glib_container_num_as_vec(_: *const GSList, _: usize) -> Vec<T>

Source§

unsafe fn from_glib_full_num_as_vec(_: *const GSList, _: usize) -> Vec<T>

Source§

impl<T> FromGlibContainerAsVec<<T as GlibPtrDefault>::GlibType, *mut GList> for T

Source§

unsafe fn from_glib_none_num_as_vec(ptr: *mut GList, num: usize) -> Vec<T>

Source§

unsafe fn from_glib_container_num_as_vec(ptr: *mut GList, num: usize) -> Vec<T>

Source§

unsafe fn from_glib_full_num_as_vec(ptr: *mut GList, num: usize) -> Vec<T>

Source§

impl<T> FromGlibContainerAsVec<<T as GlibPtrDefault>::GlibType, *mut GPtrArray> for T

Source§

unsafe fn from_glib_none_num_as_vec(ptr: *mut GPtrArray, num: usize) -> Vec<T>

Source§

unsafe fn from_glib_container_num_as_vec( ptr: *mut GPtrArray, num: usize, ) -> Vec<T>

Source§

unsafe fn from_glib_full_num_as_vec(ptr: *mut GPtrArray, num: usize) -> Vec<T>

Source§

impl<T> FromGlibContainerAsVec<<T as GlibPtrDefault>::GlibType, *mut GSList> for T

Source§

unsafe fn from_glib_none_num_as_vec(ptr: *mut GSList, num: usize) -> Vec<T>

Source§

unsafe fn from_glib_container_num_as_vec(ptr: *mut GSList, num: usize) -> Vec<T>

Source§

unsafe fn from_glib_full_num_as_vec(ptr: *mut GSList, num: usize) -> Vec<T>

Source§

impl<T> FromGlibPtrArrayContainerAsVec<<T as GlibPtrDefault>::GlibType, *const GList> for T

Source§

unsafe fn from_glib_none_as_vec(ptr: *const GList) -> Vec<T>

Source§

unsafe fn from_glib_container_as_vec(_: *const GList) -> Vec<T>

Source§

unsafe fn from_glib_full_as_vec(_: *const GList) -> Vec<T>

Source§

impl<T> FromGlibPtrArrayContainerAsVec<<T as GlibPtrDefault>::GlibType, *const GPtrArray> for T

Source§

unsafe fn from_glib_none_as_vec(ptr: *const GPtrArray) -> Vec<T>

Source§

unsafe fn from_glib_container_as_vec(_: *const GPtrArray) -> Vec<T>

Source§

unsafe fn from_glib_full_as_vec(_: *const GPtrArray) -> Vec<T>

Source§

impl<T> FromGlibPtrArrayContainerAsVec<<T as GlibPtrDefault>::GlibType, *const GSList> for T

Source§

unsafe fn from_glib_none_as_vec(ptr: *const GSList) -> Vec<T>

Source§

unsafe fn from_glib_container_as_vec(_: *const GSList) -> Vec<T>

Source§

unsafe fn from_glib_full_as_vec(_: *const GSList) -> Vec<T>

Source§

impl<T> FromGlibPtrArrayContainerAsVec<<T as GlibPtrDefault>::GlibType, *mut GList> for T

Source§

unsafe fn from_glib_none_as_vec(ptr: *mut GList) -> Vec<T>

Source§

unsafe fn from_glib_container_as_vec(ptr: *mut GList) -> Vec<T>

Source§

unsafe fn from_glib_full_as_vec(ptr: *mut GList) -> Vec<T>

Source§

impl<T> FromGlibPtrArrayContainerAsVec<<T as GlibPtrDefault>::GlibType, *mut GPtrArray> for T

Source§

unsafe fn from_glib_none_as_vec(ptr: *mut GPtrArray) -> Vec<T>

Source§

unsafe fn from_glib_container_as_vec(ptr: *mut GPtrArray) -> Vec<T>

Source§

unsafe fn from_glib_full_as_vec(ptr: *mut GPtrArray) -> Vec<T>

Source§

impl<T> FromGlibPtrArrayContainerAsVec<<T as GlibPtrDefault>::GlibType, *mut GSList> for T

Source§

unsafe fn from_glib_none_as_vec(ptr: *mut GSList) -> Vec<T>

Source§

unsafe fn from_glib_container_as_vec(ptr: *mut GSList) -> Vec<T>

Source§

unsafe fn from_glib_full_as_vec(ptr: *mut GSList) -> Vec<T>

Source§

impl<'a, T, C, E> FromValueOptional<'a> for T
where T: FromValue<'a, Checker = C>, C: ValueTypeChecker<Error = ValueTypeMismatchOrNoneError<E>>, E: Error + Send + 'static,

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoClosureReturnValue for T
where T: Into<Value>,

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Property for T
where T: HasParamSpec,

Source§

type Value = T

Source§

impl<T> PropertyGet for T
where T: HasParamSpec,

Source§

type Value = T

Source§

fn get<R, F>(&self, f: F) -> R
where F: Fn(&<T as PropertyGet>::Value) -> R,

Source§

impl<P, T> Receiver for P
where P: Deref<Target = T> + ?Sized, T: ?Sized,

Source§

type Target = T

🔬This is a nightly-only experimental API. (arbitrary_self_types)
The target type on which the method may be called.
Source§

impl<T> StaticTypeExt for T
where T: StaticType,

Source§

fn ensure_type()

Ensures that the type has been registered with the type system.
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

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

fn clone_into(&self, target: &mut T)

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

impl<T> ToSendValue for T
where T: Send + ToValue + ?Sized,

Source§

fn to_send_value(&self) -> SendValue

Returns a SendValue clone of self.
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T> TransparentType for T

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.
Source§

impl<T> TryFromClosureReturnValue for T
where T: for<'a> FromValue<'a> + StaticType + 'static,

Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.