pub trait IntoParts {
    type Parts;
    type Body;

    fn into_parts(self) -> (Self::Parts, Self::Body);
}

Required Associated Types

Required Methods

Implementors