Expand description
Defines traits and data types to generate widgets from collections efficiently.
Re-exports§
pub use widgets::traits::*;
Modules§
- positions
- Position types for various widgets.
- widgets
- Traits and implementations used for factories to interact with widgets.
Structs§
- Async
Factory Sender - Contains senders to send and receive messages from a
Component
. - Async
Factory VecDeque - A container similar to
VecDeque
that can be used to store data associated with components that implementAsyncFactoryComponent
. - Async
Factory VecDeque Builder - A builder-pattern struct for building a
AsyncFactoryVecDeque
. - Async
Factory VecDeque Connector - Second stage of the builder-pattern for building a
AsyncFactoryVecDeque
. - Async
Factory VecDeque Guard - Provides methods to edit the underlying
AsyncFactoryVecDeque
. - Dynamic
Index - A dynamic index that updates automatically when items are shifted inside a factory container.
- Factory
Hash Map - A container similar to
HashMap
that can be used to store values of typeFactoryComponent
. - Factory
Hash MapBuilder - A builder-pattern struct for building a
FactoryHashMap
. - Factory
Hash MapConnector - Second stage of the builder-pattern for building a
FactoryHashMap
. - Factory
Sender - Contains senders to send and receive messages from a
Component
. - Factory
VecDeque - A container similar to
VecDeque
that can be used to store data associated with components that implementFactoryComponent
. - Factory
VecDeque Builder - A builder-pattern struct for building a
FactoryVecDeque
. - Factory
VecDeque Connector - Second stage of the builder-pattern for building a
FactoryVecDeque
. - Factory
VecDeque Guard - Provides methods to edit the underlying
FactoryVecDeque
.
Traits§
- Async
Factory Component - A component that’s stored inside a factory.
Similar to
Component
but adjusted to fit the life cycle of factories. - Cloneable
Factory Component - Extension for
FactoryComponent
that makes elements cloneable. - Factory
Component - A component that’s stored inside a factory.
Similar to
Component
but adjusted to fit the life cycle of factories.