Trait IntoParts

Source
pub trait IntoParts {
    type Parts;
    type Body;

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

Required Associated Types§

Required Methods§

Source

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

Implementors§