pub trait TupleMapperSecond<Input, Output, Result>where
Self: Sized,{
// Required method
fn map_second(self, mapper: impl FnOnce(Input) -> Output) -> Result;
}
Required Methods§
fn map_second(self, mapper: impl FnOnce(Input) -> Output) -> Result
Object Safety§
This trait is not object safe.