Trait consecuit::construction::types::ComponentReturn[][src]

pub trait ComponentReturn: 'static + Sealed {
    type StoresList: StoresList;
    type HoleNode: MaybeHoleNode;
    fn get_node(self) -> Self::HoleNode;
}
Expand description

Use impl ComponentReturn as return type for components. See the docs at crate for more information on how to write components. This trait is sealed.

Associated Types

Required methods

Implementors