pub trait JsonResponse {
    type Raw;
    type Type;

    fn map(raw: Self::Raw) -> Self::Type;
}

Required Associated Types

Required Methods

Implementors