[][src]Trait isilon::apis::SyncReportsApi

pub trait SyncReportsApi {
    fn get_report_subreport(
        &self,
        report_subreport_id: &str,
        rid: &str
    ) -> Box<dyn Future<Item = ReportSubreports, Error = Error>>;
fn get_report_subreports(
        &self,
        rid: &str,
        sort: &str,
        resume: &str,
        newer_than: i32,
        state: &str,
        limit: i32,
        dir: &str
    ) -> Box<dyn Future<Item = ReportSubreportsExtended, Error = Error>>; }

Required methods

fn get_report_subreport(
    &self,
    report_subreport_id: &str,
    rid: &str
) -> Box<dyn Future<Item = ReportSubreports, Error = Error>>

fn get_report_subreports(
    &self,
    rid: &str,
    sort: &str,
    resume: &str,
    newer_than: i32,
    state: &str,
    limit: i32,
    dir: &str
) -> Box<dyn Future<Item = ReportSubreportsExtended, Error = Error>>

Loading content...

Implementors

impl<C: Connect + 'static> SyncReportsApi for SyncReportsApiClient<C>[src]

Loading content...