Trait wikipedia::iter::IterItem [] [src]

pub trait IterItem: Sized {
    fn request_next<A: HttpClient>(page: &Page<A>, cont: &Option<Vec<(String, String)>>) -> Result<(Vec<Value>, Option<Vec<(String, String)>>)>;
    fn from_value(value: &Value) -> Option<Self>;
}

Required Methods

fn request_next<A: HttpClient>(page: &Page<A>, cont: &Option<Vec<(String, String)>>) -> Result<(Vec<Value>, Option<Vec<(String, String)>>)>

fn from_value(value: &Value) -> Option<Self>

Implementors