[][src]Module flo_rope::stream_rope

Structs

PullRope

A pull rope will notify its function when changes are available and will gather changes into a single batch when they're 'pulled' from the rope. This is useful in circumstances where updates are scheduled but not performed immediately, for example when updating a UI. Pulling changes only when the UI is ready to redraw will reduce the number of updates required to end up with a representation of the most recent state of the rope.

PushAfterRope

A push rope is a rope with a callback function where updates will be sent. It can be used as an event source for cases where updates need to be immediately reflected somewhere else.

PushBeforeRope

A push rope is a rope with a callback function where updates will be sent. It can be used as an event source for cases where updates need to be immediately reflected somewhere else.