pub trait Map<T> {
// Required method
fn map<F>(self, f: F) -> Self
where F: FnOnce(T) -> T;
}
Expand description
Moved
Copied from syntax::ptr::P
of rustc.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.