pub trait CowMapBorrowedExt<'c, 'b, IN, OUT>{
// Required method
fn map_borrowed<F>(self, f: F) -> Cow<'c, OUT>
where F: for<'f> FnOnce(&'f IN) -> Cow<'f, OUT>;
}
Required Methods§
fn map_borrowed<F>(self, f: F) -> Cow<'c, OUT>
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.