pub trait TraversableMut: EndofunctorMut + Traversable {
// Required method
fn traverse_mut<A, B, P: Pointed + ApplicableMut>(
_: impl FnMut(A) -> P::H<B>,
_: Self::H<A>,
) -> P::H<Self::H<B>>;
}Required Methods§
fn traverse_mut<A, B, P: Pointed + ApplicableMut>( _: impl FnMut(A) -> P::H<B>, _: Self::H<A>, ) -> P::H<Self::H<B>>
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.