Trait wireplumber::util::TransitionExt

source ·
pub trait TransitionExt: IsA<Transition> + Sealed + 'static {
    // Provided methods
    fn advance(&self) { ... }
    fn is_completed(&self) -> bool { ... }
    fn source_object(&self) -> Option<Object> { ... }
    fn had_error(&self) -> bool { ... }
    fn connect_completed_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId { ... }
}

Provided Methods§

source

fn advance(&self)

source

fn is_completed(&self) -> bool

source

fn source_object(&self) -> Option<Object>

source

fn had_error(&self) -> bool

source

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

Object Safety§

This trait is not object safe.

Implementors§