Struct gstreamer_sdp::sdp_message::SDPMessageRef [−][src]
#[repr(transparent)]pub struct SDPMessageRef(_);
Implementations
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 set_connection(
&mut self,
nettype: &str,
addrtype: &str,
address: &str,
ttl: u32,
addr_number: u32
)[src]pub fn set_origin(
&mut self,
username: &str,
sess_id: &str,
sess_version: &str,
nettype: &str,
addrtype: &str,
addr: &str
)[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]Trait Implementations
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
type Checker = GenericValueTypeOrNoneChecker<Self>
type Checker = GenericValueTypeOrNoneChecker<Self>Value type checker.
Get the contained value from a Value. Read more
Returns the type identifier of Self.
type Owned = SDPMessage
type Owned = SDPMessageThe resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
🔬 This is a nightly-only experimental API. (toowned_clone_into)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
Convert an Option to a Value.