[][src]Trait kayrx_ui::fabric::agent::Bridged

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

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

Required methods

fn bridge(callback: Callback<Self::Output>) -> Box<dyn Bridge<Self> + 'static>

Creates a messaging bridge between a worker and the component.

Loading content...

Implementors

impl<T> Bridged for T where
    T: Agent
[src]

Loading content...