pub trait RTSPMediaFactoryURIExt: IsA<RTSPMediaFactoryURI> + Sealed + 'static {
// Provided methods
fn uri(&self) -> GString { ... }
fn set_uri(&self, uri: &str) { ... }
fn uses_gstpay(&self) -> bool { ... }
fn set_use_gstpay(&self, use_gstpay: bool) { ... }
fn connect_uri_notify<F: Fn(&Self) + Send + Sync + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
fn connect_use_gstpay_notify<F: Fn(&Self) + Send + Sync + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
}
Expand description
Provided Methods§
sourcefn uri(&self) -> GString
fn uri(&self) -> GString
Get the URI that will provide media for this factory.
§Returns
the configured URI. g_free()
after usage.
fn uses_gstpay(&self) -> bool
fn set_use_gstpay(&self, use_gstpay: bool)
fn connect_uri_notify<F: Fn(&Self) + Send + Sync + 'static>( &self, f: F, ) -> SignalHandlerId
fn connect_use_gstpay_notify<F: Fn(&Self) + Send + Sync + 'static>( &self, f: F, ) -> SignalHandlerId
Object Safety§
This trait is not object safe.