Expand description
An experimental approach to UI in Rust with a focus on ergonomics, efficiency, and simplicity.
This crate contains shared infrastructure which is platform agnostic. To
build an application, you’ll need a backend crate such as ravel-web
.
Structs§
- The state of an
Adapt
. - Context provided by
with
. - A reference to a
State
which must beState::run
. - The result of
Thunk::run
. - A
Builder
created fromwith_local
. - The state of a
WithLocal
.
Traits§
- Trait for upcasting to
Any
, implemented automatically. - Initializes a component or applies updates to an existing one.
- A dummy type which typically represents a “backend”.
- Trait for the state of a
Builder
.
Functions§
- Creates a
Builder
which has access to a local state value.