[][src]Crate relm_core

Core primitive types for relm.

The primary type is EventStream.

Structs

Channel

A channel to send a message to a relm widget from another thread.

EventStream

A stream of messages to be used for widget/signal communication and inter-widget communication. EventStream cannot be send to another thread. Use a Channel Sender instead.

Lock

A lock is used to temporarily stop emitting messages.

Sender

A wrapper over a std::sync::mpsc::Sender to wakeup the glib event loop when sending a message.