pub trait Extract<A> {
// Required method
fn extract(self) -> A;
}Expand description
Extract lets you take a value of A out of an F<A>.
It is the categorical dual of Pure, ie. it does the opposite of Pure.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".