Skip to main content

Component

Trait Component 

Source
pub trait Component<P> { }

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<P, F, R> Component<P> for F
where F: FnOnce(P) -> R, P: Props,