Struct termimad::EventSource

source ·
pub struct EventSource { /* private fields */ }
Expand description

a thread backed event listener emmiting events on a channel.

Additionnally to emmitting events, this source updates a sharable event count, protected by an Arc. This makes it easy for background computation to stop (or check if they should) when a user event is produced.

The event source isn’t tick based. It makes it possible to built TUI with no CPU consumption while idle.

Implementations§

create a new source with default options

If desired, mouse support must be enabled and disabled in crossterm.

create a new source

If desired, mouse support must be enabled and disabled in crossterm.

either start listening again, or quit, depending on the passed bool. It’s mandatory to call this with quit=true at end for a proper ending of the thread (and its resources)

return a shared reference to the event count. Other threads can use it to check whether something happened (when there’s no parallel computation, the event channel is usually enough).

return a new receiver for the channel emmiting events

return a new receiver for the channel emmiting escape sequences

It’s a bounded channel and any escape sequence will be dropped when it’s full

Trait Implementations§

Executes the destructor for this type. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The alignment of pointer.
The type for initializers.
Initializes a with the given initializer. Read more
Dereferences the given pointer. Read more
Mutably dereferences the given pointer. Read more
Drops the object pointed to by the given pointer. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.