cgp-component 0.4.2-alpha

Core CGP traits and types used for implementing the CGP component system
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![no_std]

/*!
   This crate defines the core CGP types and traits used to enable the core
   CGP component implementation.
*/

mod traits;
mod types;

pub use traits::{CanUseComponent, DelegateComponent, HasCgpProvider, IsProviderFor};
pub use types::{UseContext, UseDelegate, UseFields, WithContext, WithProvider};