[]Struct gstreamer_sdp::sdp_media::SDPMedia

pub struct SDPMedia(_);

Methods

impl SDPMedia[src]

pub fn new() -> Self[src]

Methods from Deref<Target = SDPMediaRef>

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

pub fn add_bandwidth(&mut self, bwtype: &str, bandwidth: u32)[src]

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

pub fn add_format(&mut self, format: &str)[src]

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

pub fn attributes(&self) -> AttributesIter[src]

pub fn formats(&self) -> FormatsIter[src]

pub fn bandwidths(&self) -> BandwidthsIter[src]

pub fn connections(&self) -> ConnectionsIter[src]

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

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

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

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

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

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

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

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

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

pub fn get_caps_from_media(&self, pt: i32) -> Option<Caps>[src]

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

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

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

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

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

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

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

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

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

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

pub fn insert_connection(
    &mut self,
    idx: Option<u32>,
    conn: SDPConnection
) -> Result<(), ()>
[src]

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

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

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

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

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

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

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

pub fn replace_connection(
    &mut self,
    idx: u32,
    conn: SDPConnection
) -> Result<(), ()>
[src]

pub fn replace_format(&mut self, idx: u32, format: &str) -> Result<(), ()>[src]

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

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

pub fn set_media(&mut self, med: &str)[src]

pub fn set_port_info(&mut self, port: u32, num_ports: u32)[src]

pub fn set_proto(&mut self, proto: &str)[src]

Trait Implementations

impl Borrow<SDPMediaRef> for SDPMedia[src]

impl BorrowMut<SDPMediaRef> for SDPMedia[src]

impl Clone for SDPMedia

impl Debug for SDPMedia[src]

impl Default for SDPMedia[src]

impl Deref for SDPMedia[src]

type Target = SDPMediaRef

The resulting type after dereferencing.

impl DerefMut for SDPMedia[src]

impl Display for SDPMedia[src]

impl Eq for SDPMedia[src]

impl Hash for SDPMedia[src]

impl Ord for SDPMedia[src]

impl PartialEq<SDPMedia> for SDPMedia[src]

impl PartialOrd<SDPMedia> for SDPMedia[src]

impl Send for SDPMedia[src]

impl StructuralEq for SDPMedia[src]

impl StructuralPartialEq for SDPMedia[src]

impl Sync for SDPMedia[src]

Auto Trait Implementations

impl RefUnwindSafe for SDPMedia

impl Unpin for SDPMedia

impl UnwindSafe for SDPMedia

Blanket Implementations

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

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

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

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

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.

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.