pub trait Bridged: 'static + Agent {
    fn bridge(
        callback: Callback<Self::Output>
    ) -> Box<dyn Bridge<Self> + 'static, Global>; }
Expand description

This trait allows registering or getting the address of a worker.

Required Methods

Creates a messaging bridge between a worker and the component.

Implementors