TraversableMut

Trait TraversableMut 

Source
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§

Source

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.

Implementors§