pub trait ApiCategoryResponse: Send + Sync {
    type Selection: ApiSelection;

    // Required method
    fn from_response(response: ApiResponse) -> Self;
}

Required Associated Types§

Required Methods§

source

fn from_response(response: ApiResponse) -> Self

Implementors§