Trait gstreamer_rtsp_server::RTSPMediaFactoryURIExt [−][src]
pub trait RTSPMediaFactoryURIExt {
fn get_uri(&self) -> Option<String>;
fn set_uri(&self, uri: &str);
fn get_property_use_gstpay(&self) -> bool;
fn set_property_use_gstpay(&self, use_gstpay: bool);
fn connect_property_uri_notify<F: Fn(&Self) + Send + Sync + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_property_use_gstpay_notify<F: Fn(&Self) + Send + Sync + 'static>(
&self,
f: F
) -> SignalHandlerId;
}Required Methods
fn get_uri(&self) -> Option<String>
Get the URI that will provide media for this factory.
Returns
the configured URI. g_free after usage.
fn set_uri(&self, uri: &str)
fn get_property_use_gstpay(&self) -> bool
fn set_property_use_gstpay(&self, use_gstpay: bool)
fn connect_property_uri_notify<F: Fn(&Self) + Send + Sync + 'static>(
&self,
f: F
) -> SignalHandlerId
&self,
f: F
) -> SignalHandlerId
fn connect_property_use_gstpay_notify<F: Fn(&Self) + Send + Sync + 'static>(
&self,
f: F
) -> SignalHandlerId
&self,
f: F
) -> SignalHandlerId
Implementors
impl<O: IsA<RTSPMediaFactoryURI> + IsA<Object>> RTSPMediaFactoryURIExt for O