Trait mwapi_responses::ApiResponse[][src]

pub trait ApiResponse<T> {
    fn params() -> &'static [(&'static str, &'static str)]
Notable traits for &'_ mut [u8]
impl<'_> Write for &'_ mut [u8]impl<'_> Read for &'_ [u8]
;
fn items(&self) -> &[T]
Notable traits for &'_ mut [u8]
impl<'_> Write for &'_ mut [u8]impl<'_> Read for &'_ [u8]
;
fn get_continue(&self) -> &HashMap<String, String>; fn has_continue(&self) -> bool { ... } }

Required methods

Get the request params to send to the API

Iterate over the main items in this request

Provided methods

Implementors