pub trait IdFunctor: Sized {
    type Inner;

    fn try_map_id<F, E>(self, f: F) -> Result<Self, E>
    where
        F: FnMut(Self::Inner) -> Result<Self::Inner, E>
; }

Required Associated Types§

Required Methods§

Implementations on Foreign Types§

Implementors§