Struct gstreamer_sdp::sdp_media::SDPMedia [−][src]
pub struct SDPMedia(_);
Implementations
Methods from Deref<Target = SDPMediaRef>
pub fn add_connection(
&mut self,
nettype: &str,
addrtype: &str,
address: &str,
ttl: u32,
addr_number: u32
)
[src]pub fn attributes(&self) -> AttributesIter<'_>ⓘNotable traits for AttributesIter<'a>
impl<'a> Iterator for AttributesIter<'a> type Item = &'a SDPAttribute;
[src]pub fn formats(&self) -> FormatsIter<'_>ⓘNotable traits for FormatsIter<'a>
impl<'a> Iterator for FormatsIter<'a> type Item = &'a str;
[src]pub fn bandwidths(&self) -> BandwidthsIter<'_>ⓘNotable traits for BandwidthsIter<'a>
impl<'a> Iterator for BandwidthsIter<'a> type Item = &'a SDPBandwidth;
[src]pub fn connections(&self) -> ConnectionsIter<'_>ⓘNotable traits for ConnectionsIter<'a>
impl<'a> Iterator for ConnectionsIter<'a> type Item = &'a SDPConnection;
[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_connection(
&mut self,
idx: Option<u32>,
conn: SDPConnection
) -> Result<(), BoolError>
[src]Trait Implementations
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
type Target = SDPMediaRef
type Target = SDPMediaRef
The resulting type after dereferencing.
Dereferences the value.
Mutably dereferences the value.
This method returns an ordering between self
and other
values if one exists. Read more
This method tests less than (for self
and other
) and is used by the <
operator. Read more
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
Auto Trait Implementations
Blanket Implementations
Mutably borrows from an owned value. Read more