Trait gitlab_api::Lister [] [src]

pub trait Lister<T> {
    fn list(&self) -> Result<T>;
    fn list_paginated(&self, page: u16, per_page: u16) -> Result<T>;
}

Required Methods

Implementors