Introducing Model
This minor version release introduces Model
s, which are bits of state that automatically transmit their updates to Receivers
.
With Model
s you can build components that track their own state with less clutter in your Component
implementation. Most view updates can be driven by one or more Model
s and the Component::ViewMsg
can be used exclusively for communication with upstream components.
v0.4.x patch releases will include an example + cookbook article about Model
s.