Skip to main content

Outbox

Type Alias Outbox 

Source
pub type Outbox = Box<dyn FnMut(Vec<u8>) -> bool + Send>;
Expand description

Messages the engine emits, ready for the client outbox. Returns false when the client is gone; the engine then exits.

Aliased Typeยง

pub struct Outbox(/* private fields */);