pub trait ParamDerefMut {
    type Target;
    type Output: DerefMut<Target = Self::Target>;

    fn build(self) -> Self::Output;
}

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors