Trait ComponentValue

Source
pub trait ComponentValue:
    Send
    + Sync
    + 'static { }
Expand description

Trait alias for a ’static + Send + Sync type which can be used as a component.

Implementors§

Source§

impl<T> ComponentValue for T
where T: Send + Sync + 'static,