Trait dbus::blocking::MakeSignal[][src]

pub trait MakeSignal<G, S, T> {
    fn make(self, mstr: String) -> G;
}

Internal helper trait

Required methods

fn make(self, mstr: String) -> G[src]

Internal helper trait

Loading content...

Implementors

impl<S: ReadAll, F: FnMut(S, &Connection, &Message) -> bool + Send + 'static> MakeSignal<Box<dyn FnMut(Message, &Connection) + 'static + Send, Global>, S, Connection> for F[src]

impl<S: ReadAll, F: FnMut(S, &LocalConnection, &Message) -> bool + 'static> MakeSignal<Box<dyn FnMut(Message, &LocalConnection) + 'static, Global>, S, LocalConnection> for F[src]

impl<S: ReadAll, F: FnMut(S, &SyncConnection, &Message) -> bool + Send + Sync + 'static> MakeSignal<Box<dyn FnMut(Message, &SyncConnection) + 'static + Send + Sync, Global>, S, SyncConnection> for F[src]

Loading content...