pub trait SuperRequest<R>: Sized {
    fn from(r: R) -> Self;
    fn try_into(self) -> Result<R, Self>;
}

Required Methods

Implementors