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§

source

fn direction(&self) -> Direction

source

fn media_class(&self) -> Option<GString>

source

fn name(&self) -> Option<GString>

source

fn connect_direction_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId

source

fn connect_media_class_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId

source

fn connect_name_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId

Object Safety§

This trait is not object safe.

Implementors§