Trait wireplumber::pw::EndpointExt
source · pub trait EndpointExt: IsA<Endpoint> + Sealed + 'static {
// Provided methods
fn direction(&self) -> Direction { ... }
fn media_class(&self) -> Option<GString> { ... }
fn name(&self) -> Option<GString> { ... }
fn connect_direction_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId { ... }
fn connect_media_class_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId { ... }
fn connect_name_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId { ... }
}
Provided Methods§
fn direction(&self) -> Direction
fn media_class(&self) -> Option<GString>
fn name(&self) -> Option<GString>
fn connect_direction_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId
fn connect_media_class_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId
fn connect_name_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId
Object Safety§
This trait is not object safe.