Trait Peered

Source
pub trait Peered: HandleBased {
    // Provided method
    fn signal_peer(
        &self,
        set: Signals,
        clear: Signals,
    ) -> impl Future<Output = Result<(), Error>> { ... }
}
Expand description

Trait for handle-based types that have a peer.

Provided Methods§

Source

fn signal_peer( &self, set: Signals, clear: Signals, ) -> impl Future<Output = Result<(), Error>>

Assert and deassert signals on this handle’s peer.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§