pub trait CowMapBorrowedExt<'b, IN, OUT>{
// Required method
fn map_borrowed<F>(self, f: F) -> Cow<'b, OUT>
where F: for<'f> FnOnce(&'f IN) -> Cow<'f, OUT>;
}
Required Methods§
fn map_borrowed<F>(self, f: F) -> Cow<'b, OUT>
Object Safety§
This trait is not object safe.