pub trait Pure<A> {
// Required method
fn pure(value: A) -> Self;
}Expand description
Pure lets you construct a value of type F<A> using a single value of
A.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".